2022-05-07 04:09:05 +00:00
|
|
|
/*
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
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'
|
|
|
|
config_profile_description = 'Minimal test dataset skipping all preprocessing to check pipeline function'
|
|
|
|
|
|
|
|
// Limit resources so that this can run on GitHub Actions
|
|
|
|
max_cpus = 2
|
|
|
|
max_memory = '6.GB'
|
|
|
|
max_time = '6.h'
|
|
|
|
|
|
|
|
// Input data
|
|
|
|
input = 'https://raw.githubusercontent.com/nf-core/test-datasets/taxprofiler/samplesheet.csv'
|
|
|
|
databases = 'https://raw.githubusercontent.com/nf-core/test-datasets/taxprofiler/database.csv'
|
2022-05-31 18:11:19 +00:00
|
|
|
perform_shortread_qc = false
|
|
|
|
perform_longread_qc = false
|
2022-05-07 04:09:05 +00:00
|
|
|
perform_shortread_complexityfilter = false
|
|
|
|
perform_shortread_hostremoval = false
|
|
|
|
perform_longread_hostremoval = false
|
|
|
|
perform_runmerging = false
|
|
|
|
hostremoval_reference = 'https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/genomics/homo_sapiens/genome/genome.fasta'
|
|
|
|
run_kaiju = true
|
|
|
|
run_kraken2 = true
|
2022-10-14 10:18:55 +00:00
|
|
|
run_bracken = true
|
2022-05-07 04:09:05 +00:00
|
|
|
run_malt = true
|
|
|
|
run_metaphlan3 = true
|
|
|
|
run_centrifuge = true
|
|
|
|
run_diamond = true
|
2022-11-29 13:19:01 +00:00
|
|
|
run_krakenuniq = true
|
2022-05-31 12:47:38 +00:00
|
|
|
run_motus = false
|
2022-06-27 13:41:42 +00:00
|
|
|
run_krona = true
|
2022-05-07 04:09:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
process {
|
|
|
|
withName: MALT_RUN {
|
|
|
|
maxForks = 1
|
2022-11-24 15:55:19 +00:00
|
|
|
ext.args = { "-m ${params.malt_mode} -J-Xmx12G" }
|
2022-05-07 04:09:05 +00:00
|
|
|
}
|
|
|
|
}
|