Skip to content

Commit 1a1dbe5

Browse files
authored
Merge pull request #324 from nf-core/dev
Dev -> Master for 2.1.2 release
2 parents 415795d + df5b0e1 commit 1a1dbe5

File tree

8 files changed

+21
-6
lines changed

8 files changed

+21
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
44
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
55

6+
## [[2.1.2](https://github.com/nf-core/atacseq/releases/tag/2.1.2)] - 2022-08-07
7+
8+
### Enhancements & fixes
9+
10+
- [[#322](https://github.com/nf-core/atacseq/issues/322)]Remove fasta from required schema parameters so that when launching from tools it is not required.
11+
- Updates `homer_annotatepeaks` module.
12+
613
## [[2.1.1](https://github.com/nf-core/atacseq/releases/tag/2.1.1)] - 2022-07-21
714

815
- Minor patch release to fix AWS full test.

assets/multiqc_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
report_comment: >
2-
This report has been generated by the <a href="https://github.com/nf-core/atacseq/2.1.1" target="_blank">nf-core/atacseq</a>
2+
This report has been generated by the <a href="https://github.com/nf-core/atacseq/2.1.2" target="_blank">nf-core/atacseq</a>
33
analysis pipeline. For information about how to interpret these results, please see the
4-
<a href="https://nf-co.re/atacseq/2.1.1/output" target="_blank">documentation</a>.
4+
<a href="https://nf-co.re/atacseq/2.1.2/output" target="_blank">documentation</a>.
55
66
data_format: "yaml"
77

lib/WorkflowAtacseq.groovy

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ class WorkflowAtacseq {
1313
public static void initialise(params, log) {
1414
genomeExistsError(params, log)
1515

16+
if (!params.fasta) {
17+
Nextflow.error "Genome fasta file not specified with e.g. '--fasta genome.fa' or via a detectable config file."
18+
}
19+
1620
if (!params.gtf && !params.gff) {
1721
log.error "No GTF or GFF3 annotation specified! The pipeline requires at least one of these files."
1822
System.exit(1)

modules.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
},
9393
"homer/annotatepeaks": {
9494
"branch": "master",
95-
"git_sha": "911696ea0b62df80e900ef244d7867d177971f73",
95+
"git_sha": "ffc27c68870f5f67e541bb67d94e03c597f75257",
9696
"installed_by": ["modules"]
9797
},
9898
"khmer/uniquekmers": {

modules/nf-core/homer/annotatepeaks/main.nf

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/nf-core/homer/annotatepeaks/meta.yml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nextflow.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ manifest {
286286
description = """ATACSeq peak-calling and differential analysis pipeline."""
287287
mainScript = 'main.nf'
288288
nextflowVersion = '!>=23.04.0'
289-
version = '2.1.1'
289+
version = '2.1.2'
290290
doi = 'https://doi.org/10.5281/zenodo.2634132'
291291
}
292292

nextflow_schema.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,7 @@
207207
"help_text": "By default takes the value of the mito_name parameter, if set. However, some plants and algae have chloroplast genomes in addition to a mitochondrial genome and thus mito_name can have values as multiple names that are separated by a | symbol that will break ataqv, in these cases this parameter can be used to overwrite these values.",
208208
"fa_icon": "fas fa-signature"
209209
}
210-
},
211-
"required": ["fasta"]
210+
}
212211
},
213212
"adapter_trimming_options": {
214213
"title": "Adapter trimming options",

0 commit comments

Comments
 (0)