Skip to content

Commit

Permalink
added bowtie options to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagofilipe12 committed Feb 6, 2018
1 parent 82c8ae4 commit e057b11
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,11 @@ Usage:
Reads options:
--reads The path to the read files. Here users may provide many samples in the same directory. However be assured that glob pattern is unique (e.g. 'path/to/*_{1,2}.fastq').
--singleEnd Provide this option if you have single-end reads. By default the pipeline will assume that you provide paired-end reads. Default: false
Fasta options:
Fasta options:
--fasta Provide fasta file pattern to be searched by nextflow. Default: 'fasta/*.fas'
Bowtie2 options:
--max_k Provide the maximum number of alignments allowed per read. Default: 10949 (the number of plasmids present in pATLAS)
--trim5 Provide parameter -5 to bowtie2 allowing to trim 5' end. Default: 0
```


Expand Down
2 changes: 1 addition & 1 deletion lib/Helper.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Help{
println(" --singleEnd Provide this option if you have single-end reads. " +
"By default the pipeline will assume that you provide paired-end " +
"reads. Default: false")
println(" Fasta options:")
println(" Fasta options:")
println(" --fasta Provide fasta file pattern to be searched by " +
"nextflow. Default: 'fasta/*.fas'")
println(" Bowtie2 options:")
Expand Down
2 changes: 0 additions & 2 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,6 @@ process mashDistOutputJson {
/********** MAPPING ***********/
/******************************/

//TODO get max_k from dictionary with lengths --> using python?

process mappingBowtie {

tag { "mapping sample: " + sample}
Expand Down

0 comments on commit e057b11

Please sign in to comment.