Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get release ready #49

Merged
merged 2 commits into from
May 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .nf-core.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1 @@
repository_type: pipeline
lint:
files_exist:
- conf/igenomes.config
files_unchanged:
- .github/workflows/branch.yml
- lib/NfcoreSchema.groovy
template_strings: False
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ manifest {
description = """Workflow converts one or multiple bam/cram files to fastq format"""
mainScript = 'main.nf'
nextflowVersion = '!>=22.10.1'
version = '2.0.0dev'
version = '2.0'
doi = ''
}

Expand Down
15 changes: 10 additions & 5 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,29 @@
"chr": {
"type": "string",
"default": "None",
"fa_icon": "fas fa-clock"
"fa_icon": "fas fa-clock",
"description": "Only use reads mapping to a specific chromosome/region. Has to be specified as in bam: i.e chr1, chr{1..22} (gets all reads mapping to chr1 to 22), 1, \"X Y\", incorrect naming will lead to a potentially silent error."
},
"no_read_QC": {
"type": "boolean",
"fa_icon": "fas fa-clock"
"fa_icon": "fas fa-clock",
"description": "If specified, no quality control will be performed on extracted reads. Useful, if this is done anyways in the subsequent workflow."
},
"no_stats": {
"type": "boolean",
"fa_icon": "fas fa-clock"
"fa_icon": "fas fa-clock",
"description": "If specified, skips all quality control and stats computation, including `FastQC` on both input bam and output reads, `samtools flagstat`, `samtools idxstats`, and `samtools stats`."
},
"reads_in_memory": {
"type": "integer",
"default": 100000,
"fa_icon": "fas fa-clock"
"fa_icon": "fas fa-clock",
"description": "Reads to store in memory [default = '100000']. Only relevant for use with `--samtools_collate_fast`."
},
"samtools_collate_fast": {
"type": "boolean",
"fa_icon": "fas fa-clock"
"fa_icon": "fas fa-clock",
"description": "Uses fast mode for samtools collate in `sortExtractMapped`, `sortExtractUnmapped` and `sortExtractSingleEnd`."
}
}
},
Expand Down