-
Notifications
You must be signed in to change notification settings - Fork 426
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #257 from MaxUlysse/dsl2_updates
updates on DSL2
- Loading branch information
Showing
25 changed files
with
395 additions
and
216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
* ------------------------------------------------- | ||
* Nextflow config file for module specific-options | ||
* ------------------------------------------------- | ||
*/ | ||
|
||
params { | ||
modules { | ||
'fastqc' { | ||
args = "--quiet" | ||
suffix = "" | ||
publish_dir = "fastqc" | ||
publish_results = "all" | ||
} | ||
'trimgalore' { | ||
args = "--fastqc" | ||
suffix = "" | ||
publish_dir = "trimgalore" | ||
publish_results = "all" | ||
} | ||
'bwamem2_index' { | ||
args = "" | ||
suffix = "" | ||
publish_dir = "genome/bwa_index" | ||
publish_results = "all" | ||
} | ||
'bwamem2_mem' { | ||
args = "-K 100000000 -M" | ||
args2 = "" | ||
extra = "" | ||
suffix = "" | ||
publish_dir = "" | ||
publish_results = "all" | ||
} | ||
'gatk_markduplicates' { | ||
args = "ASSUME_SORTED=true REMOVE_DUPLICATES=false VALIDATION_STRINGENCY=LENIENT TMP_DIR=tmp" | ||
suffix = ".mLb.mkD" | ||
publish_dir = "bwa/mergedLibrary" | ||
publish_results = "all" | ||
} | ||
'get_software_versions' { | ||
args = "" | ||
suffix = "" | ||
publish_dir = "pipeline_info" | ||
publish_results = "all" | ||
} | ||
'output_documentation' { | ||
args = "" | ||
suffix = "" | ||
publish_dir = "pipeline_info" | ||
publish_results = "all" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.