-
Notifications
You must be signed in to change notification settings - Fork 34
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 #526 from nf-core/update-profiles
Ensure alternative long-read processing tools included in tests
- Loading branch information
Showing
14 changed files
with
262 additions
and
259 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
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 was deleted.
Oops, something went wrong.
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,56 @@ | ||
/* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Nextflow config file for running minimal tests | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Defines input files and everything required to run a fast and simple pipeline test. | ||
Use as follows: | ||
nextflow run nf-core/taxprofiler -profile test,<docker/singularity> --outdir <OUTDIR> | ||
---------------------------------------------------------------------------------------- | ||
*/ | ||
|
||
params { | ||
config_profile_name = 'Test profile for adapterremoval' | ||
config_profile_description = "Minimal test to check the alternative short-read QC function, adapterremoval" | ||
|
||
// Limit resources so that this can run on GitHub Actions | ||
max_cpus = 2 | ||
max_memory = '6.GB' | ||
max_time = '6.h' | ||
|
||
// Input data | ||
input = params.pipelines_testdata_base_path + 'taxprofiler/samplesheet.csv' | ||
databases = params.pipelines_testdata_base_path + 'taxprofiler/database_v1.2.csv' | ||
perform_shortread_qc = true | ||
perform_longread_qc = true | ||
shortread_qc_tool = 'adapterremoval' | ||
longread_adapterremoval_tool = 'porechop' | ||
longread_filter_tool = 'filtlong' | ||
perform_shortread_complexityfilter = true | ||
perform_shortread_hostremoval = true | ||
perform_longread_hostremoval = true | ||
perform_runmerging = true | ||
hostremoval_reference = params.pipelines_testdata_base_path + 'modules/data/genomics/homo_sapiens/genome/genome.fasta' | ||
run_kaiju = true | ||
run_kraken2 = true | ||
run_bracken = false | ||
run_malt = false | ||
run_metaphlan = false | ||
run_centrifuge = false | ||
run_diamond = false | ||
run_krakenuniq = false | ||
run_motus = false | ||
run_ganon = false | ||
run_kmcp = false | ||
} | ||
|
||
process { | ||
withName: MALT_RUN { | ||
maxForks = 1 | ||
ext.args = { "-m ${params.malt_mode} -J-Xmx12G" } | ||
} | ||
withName: NONPAREIL_NONPAREIL { | ||
ext.args = { "-k 5" } | ||
} | ||
} |
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
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.