1
0
Fork 0
mirror of https://github.com/MillironX/taxprofiler.git synced 2024-09-21 09:52:05 +00:00
taxprofiler/conf/test.config

62 lines
2.6 KiB
Text
Raw Normal View History

/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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 to check pipeline function'
// Limit resources so that this can run on GitHub Actions
2022-03-28 18:38:16 +00:00
max_cpus = 2
max_memory = '6.GB'
max_time = '6.h'
// Input data
2022-04-13 16:51:56 +00:00
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-06-02 09:53:53 +00:00
perform_shortread_qc = true
perform_longread_qc = true
shortread_qc_mergepairs = true
perform_shortread_complexityfilter = true
2022-04-13 13:27:53 +00:00
perform_shortread_hostremoval = true
perform_longread_hostremoval = true
2022-05-07 04:09:05 +00:00
perform_runmerging = true
2022-05-05 11:20:34 +00:00
hostremoval_reference = 'https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/genomics/homo_sapiens/genome/genome.fasta'
2022-04-13 16:51:56 +00:00
run_kaiju = true
run_kraken2 = true
2022-10-14 10:18:55 +00:00
run_bracken = true
run_malt = false
run_metaphlan3 = true
run_centrifuge = true
2022-04-29 19:59:42 +00:00
run_diamond = true
run_krakenuniq = true
run_motus = false
run_krona = true
krona_taxonomy_directory = 'https://raw.githubusercontent.com/nf-core/test-datasets/modules/data/genomics/sarscov2/metagenome/krona_taxonomy.tab'
malt_save_reads = true
kraken2_save_reads = true
centrifuge_save_reads = true
2023-02-16 13:29:52 +00:00
run_profile_standardisation = true
2022-04-20 11:42:26 +00:00
}
2022-04-20 11:41:01 +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-04-20 11:41:01 +00:00
}
2022-09-02 06:03:05 +00:00
withName: MEGAN_RMA2INFO_TSV {
maxForks = 1
}
withName: MEGAN_RMA2INFO_KRONA {
maxForks = 1
}
}