Skip to content

Commit df6305f

Browse files
authored
Merge pull request #136 from nf-core/help_message_improvements
Extra clarifications for indices, FastP and general cleanup
2 parents deed532 + eb59405 commit df6305f

1 file changed

Lines changed: 16 additions & 17 deletions

File tree

main.nf

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,21 @@ def helpMessage() {
2626
2727
Mandatory arguments:
2828
--reads Path to input data (must be surrounded with quotes)
29-
-profile Hardware config to use (e.g. standard, docker, singularity, conda, aws). Ask your system admin if unsure, or check documentatoin.
29+
-profile Institution or personal hardware config to use (e.g. standard, docker, singularity, conda, aws). Ask your system admin if unsure, or check documentation.
3030
--singleEnd Specifies that the input is single end reads (required if not pairedEnd)
31-
--pairedEnd Specifies that the input is paired end reads (required if not singleend)
31+
--pairedEnd Specifies that the input is paired end reads (required if not singleEnd)
3232
--bam Specifies that the input is in BAM format
3333
--fasta Path to Fasta reference (required if not iGenome reference)
3434
--genome Name of iGenomes reference (required if not fasta reference)
3535
3636
Input Data Additional Options:
3737
--snpcapture Runs in SNPCapture mode (specify a BED file if you do this!)
3838
39-
References If not specified in the configuration file or you wish to overwrite any of the references.
40-
--bwa_index Path to BWA index
39+
References If not specified in the configuration file, or you wish to overwrite any of the references.
40+
--bwa_index Path to directory containing BWA index files
4141
--bedfile Path to BED file for SNPCapture methods
42-
--seq_dict Path to sequence dictionary file
43-
--fasta_index Path to FastA index
42+
--seq_dict Path to picard sequence dictionary file (typically ending in '.dict')
43+
--fasta_index Path to samtools FASTA index (typically ending in '.fai')
4444
--saveReference Saves reference genome indices for later reusage
4545
4646
Skipping Skip any of the mentioned steps
@@ -50,8 +50,8 @@ def helpMessage() {
5050
--skip_deduplication
5151
5252
Complexity Filtering
53-
--complexity_filtering Run complexity filtering on FastQ files
54-
--complexity_filter_poly_g_min Specify poly-g min filter (default: 10) for filtering
53+
--complexity_filtering Run poly-G removal on FASTQ files
54+
--complexity_filter_poly_g_min Specify length of poly-g min for clipping to be performed (default: 10)
5555
5656
Clipping / Merging
5757
--clip_forward_adaptor Specify adapter sequence to be clipped off (forward)
@@ -61,23 +61,23 @@ def helpMessage() {
6161
--min_adap_overlap Specify minimum adapter overlap
6262
6363
BWA Mapping
64-
--bwaalnn Specify the -n parameter for BWA aln
64+
--bwaalnn Specify the -n parameter for BWA aln.
6565
--bwaalnk Specify the -k parameter for BWA aln
6666
--bwaalnl Specify the -l parameter for BWA aln
6767
6868
CircularMapper
6969
--circularmapper Turn on CircularMapper (CM)
70-
--circularextension Specify the number of bases to extend
70+
--circularextension Specify the number of bases to extend reference by
7171
--circulartarget Specify the target chromosome for CM
7272
--circularfilter Specify to filter off-target reads
7373
7474
BWA Mem Mapping
75-
--bwamem Turn on BWA Mem instead of CM/BWA aln for mapping
75+
--bwamem Turn on BWA Mem instead of BWA aln for mapping
7676
7777
BAM Filtering
78-
--bam_discard_unmapped Discards unmapped reads in either FASTQ or BAM format, depending on choice.
79-
--bam_unmapped_type Defines whether to discard all unmapped reads, keep only bam and/or keep only fastq format (options: discard, bam, fastq, both).
8078
--bam_mapping_quality_threshold Minimum mapping quality for reads filter, default 0.
79+
--bam_discard_unmapped Discards unmapped reads in either FASTQ or BAM format, depending on choice (see --bam_unmapped_type).
80+
--bam_unmapped_type Defines whether to discard all unmapped reads, keep only bam and/or keep only fastq format (options: discard, bam, fastq, both).
8181
8282
DeDuplication
8383
--dedupper Deduplication method to use (options: dedup, markduplicates). Default: dedup
@@ -101,10 +101,6 @@ def helpMessage() {
101101
--bamutils_clip_left / --bamutils_clip_right Specify the number of bases to clip off reads
102102
--bamutils_softclip Use softclip instead of hard masking
103103
104-
105-
For a full list and more information of available parameters, consider the documentation.
106-
107-
108104
Other options:
109105
--outdir The output directory where the results will be saved
110106
--email Set this parameter to your e-mail address to get a summary e-mail with details of the run sent to you when the workflow exits
@@ -114,6 +110,9 @@ def helpMessage() {
114110
--max_time Time limit for each step of the pipeline. Should be in form e.g. --max_memory '2.h'
115111
--max_cpus Maximum number of CPUs to use for each step of the pipleine. Should be in form e.g. --max_cpus 1
116112
113+
For a full list and more information of available parameters, consider the documentation (https://github.com/nf-core/eager/).
114+
115+
117116
""".stripIndent()
118117
}
119118
/*

0 commit comments

Comments
 (0)