2019-12-05 11:01:10 -05:00
|
|
|
// Profile config names for nf-core/configs
|
|
|
|
|
|
|
|
params {
|
|
|
|
// Specific nf-core/configs params
|
|
|
|
config_profile_contact = 'James Fellows Yates (@jfy133)'
|
2020-05-26 05:11:42 -04:00
|
|
|
config_profile_description = 'nf-core/eager SHH profile provided by nf-core/configs'
|
2019-12-06 07:17:31 -05:00
|
|
|
igenomes_base = "/projects1/public_data/igenomes/"
|
2019-12-05 11:01:10 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Specific nf-core/eager process configuration
|
|
|
|
process {
|
2020-06-30 02:19:25 -04:00
|
|
|
|
2021-05-04 15:43:19 -04:00
|
|
|
maxRetries = 3
|
2020-06-30 02:19:25 -04:00
|
|
|
|
2019-12-06 13:11:08 -05:00
|
|
|
withName: malt {
|
2019-12-21 14:55:54 -05:00
|
|
|
maxRetries = 1
|
2020-07-08 03:36:56 -04:00
|
|
|
memory = { task.attempt > 1 ? 1900.GB : 725.GB }
|
2019-12-21 14:55:54 -05:00
|
|
|
cpus = { task.attempt > 1 ? 112 : 64 }
|
2019-12-06 13:13:29 -05:00
|
|
|
time = 1440.h
|
|
|
|
queue = { task.memory > 756.GB ? 'supercruncher' : 'long' }
|
2019-12-05 11:01:10 -05:00
|
|
|
}
|
2020-07-08 03:12:11 -04:00
|
|
|
|
2021-04-06 10:42:22 -04:00
|
|
|
withName: circulargenerator {
|
|
|
|
cpus = { check_max( 1, 'cpus' ) }
|
|
|
|
memory = { check_max( 4.GB * task.attempt, 'memory' ) }
|
|
|
|
time = { check_max( 4.h * task.attempt, 'time' ) }
|
|
|
|
}
|
|
|
|
|
2020-07-08 03:12:11 -04:00
|
|
|
withLabel:'sc_tiny'{
|
|
|
|
cpus = { check_max( 1, 'cpus' ) }
|
|
|
|
memory = { check_max( 1.GB * task.attempt, 'memory' ) }
|
2020-07-11 12:31:04 -04:00
|
|
|
time = { task.attempt == 3 ? 1440.h : task.attempt == 2 ? 48.h : 2.h }
|
2020-07-08 03:12:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
withLabel:'sc_small'{
|
|
|
|
cpus = { check_max( 1, 'cpus' ) }
|
|
|
|
memory = { check_max( 4.GB * task.attempt, 'memory' ) }
|
2020-07-11 12:31:04 -04:00
|
|
|
time = { task.attempt == 3 ? 1440.h : task.attempt == 2 ? 48.h : 2.h }
|
2020-07-08 03:12:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
withLabel:'sc_medium'{
|
|
|
|
cpus = { check_max( 1, 'cpus' ) }
|
|
|
|
memory = { check_max( 8.GB * task.attempt, 'memory' ) }
|
2020-07-11 12:31:04 -04:00
|
|
|
time = { task.attempt == 3 ? 1440.h : task.attempt == 2 ? 48.h : 2.h }
|
2020-07-08 03:12:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
withLabel:'mc_small'{
|
|
|
|
cpus = { check_max( 2, 'cpus' ) }
|
|
|
|
memory = { check_max( 4.GB * task.attempt, 'memory' ) }
|
2020-07-11 12:31:04 -04:00
|
|
|
time = { task.attempt == 3 ? 1440.h : task.attempt == 2 ? 48.h : 2.h }
|
2020-07-08 03:12:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
withLabel:'mc_medium' {
|
|
|
|
cpus = { check_max( 4, 'cpus' ) }
|
|
|
|
memory = { check_max( 8.GB * task.attempt, 'memory' ) }
|
2020-07-11 12:31:04 -04:00
|
|
|
time = { task.attempt == 3 ? 1440.h : task.attempt == 2 ? 48.h : 2.h }
|
2020-07-08 03:12:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
withLabel:'mc_large'{
|
|
|
|
cpus = { check_max( 8, 'cpus' ) }
|
|
|
|
memory = { check_max( 16.GB * task.attempt, 'memory' ) }
|
2020-07-11 12:31:04 -04:00
|
|
|
time = { task.attempt == 3 ? 1440.h : task.attempt == 2 ? 48.h : 2.h }
|
2020-07-08 03:12:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
withLabel:'mc_huge'{
|
|
|
|
cpus = { check_max( 32, 'cpus' ) }
|
|
|
|
memory = { check_max( 256.GB * task.attempt, 'memory' ) }
|
2021-01-19 07:53:01 -05:00
|
|
|
time = { task.attempt == 3 ? 1440.h : task.attempt == 2 ? 48.h : 2.h }
|
2020-07-08 03:12:11 -04:00
|
|
|
}
|
|
|
|
|
2019-12-05 11:01:10 -05:00
|
|
|
}
|
2020-05-04 15:02:16 -04:00
|
|
|
|
2020-05-26 05:11:42 -04:00
|
|
|
profiles {
|
2021-01-19 07:53:01 -05:00
|
|
|
|
|
|
|
big_data {
|
|
|
|
|
2021-02-04 02:00:57 -05:00
|
|
|
params {
|
2021-02-04 02:06:35 -05:00
|
|
|
// Specific nf-core/configs params
|
|
|
|
config_profile_contact = 'James Fellows Yates (@jfy133)'
|
|
|
|
config_profile_description = 'nf-core/eager big-data SHH profile provided by nf-core/configs'
|
2021-02-04 02:00:57 -05:00
|
|
|
}
|
|
|
|
|
2021-01-19 07:53:01 -05:00
|
|
|
executor {
|
|
|
|
queueSize = 6
|
|
|
|
}
|
|
|
|
|
|
|
|
process {
|
|
|
|
|
|
|
|
maxRetries = 2
|
|
|
|
|
2021-02-04 02:13:16 -05:00
|
|
|
withName:malt {
|
2021-01-19 07:53:01 -05:00
|
|
|
maxRetries = 1
|
|
|
|
memory = { task.attempt > 1 ? 1900.GB : 725.GB }
|
|
|
|
cpus = { task.attempt > 1 ? 112 : 64 }
|
|
|
|
time = 1440.h
|
|
|
|
queue = { task.memory > 756.GB ? 'supercruncher' : 'long' }
|
|
|
|
}
|
2021-02-03 14:13:09 -05:00
|
|
|
|
2021-02-04 02:13:16 -05:00
|
|
|
withName:hostremoval_input_fastq {
|
2021-02-03 14:13:09 -05:00
|
|
|
cpus = { check_max( 1, 'cpus' ) }
|
|
|
|
memory = { check_max( 32.GB * task.attempt, 'memory' ) }
|
2021-02-04 02:13:16 -05:00
|
|
|
time = 1440.h
|
|
|
|
queue = 'long'
|
2021-02-03 14:13:09 -05:00
|
|
|
}
|
2021-01-19 07:53:01 -05:00
|
|
|
|
|
|
|
withLabel:'sc_tiny'{
|
|
|
|
cpus = { check_max( 1, 'cpus' ) }
|
|
|
|
memory = { check_max( 2.GB * task.attempt, 'memory' ) }
|
2021-06-04 06:22:54 -04:00
|
|
|
time = { task.attempt == 3 ? 1440.h : 48.h }
|
2021-01-19 07:53:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
withLabel:'sc_small'{
|
|
|
|
cpus = { check_max( 1, 'cpus' ) }
|
|
|
|
memory = { check_max( 8.GB * task.attempt, 'memory' ) }
|
2021-06-04 06:22:54 -04:00
|
|
|
time = { task.attempt == 3 ? 1440.h : 48.h }
|
2021-01-19 07:53:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
withLabel:'sc_medium'{
|
|
|
|
cpus = { check_max( 1, 'cpus' ) }
|
|
|
|
memory = { check_max( 16.GB * task.attempt, 'memory' ) }
|
2021-06-04 06:22:54 -04:00
|
|
|
time = { task.attempt == 3 ? 1440.h : 48.h }
|
2021-01-19 07:53:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
withLabel:'mc_small'{
|
|
|
|
cpus = { check_max( 2, 'cpus' ) }
|
|
|
|
memory = { check_max( 8.GB * task.attempt, 'memory' ) }
|
2021-06-04 06:22:54 -04:00
|
|
|
time = { task.attempt == 3 ? 1440.h : 48.h }
|
2021-01-19 07:53:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
withLabel:'mc_medium' {
|
|
|
|
cpus = { check_max( 4, 'cpus' ) }
|
|
|
|
memory = { check_max( 16.GB * task.attempt, 'memory' ) }
|
2021-06-04 06:22:54 -04:00
|
|
|
time = { task.attempt == 3 ? 1440.h : 48.h }
|
2021-01-19 07:53:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
withLabel:'mc_large'{
|
|
|
|
cpus = { check_max( 8, 'cpus' ) }
|
|
|
|
memory = { check_max( 32.GB * task.attempt, 'memory' ) }
|
2021-06-04 06:22:54 -04:00
|
|
|
time = { task.attempt == 3 ? 1440.h : 48.h }
|
2021-01-19 07:53:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
withLabel:'mc_huge'{
|
|
|
|
cpus = { check_max( 32, 'cpus' ) }
|
|
|
|
memory = { check_max( 512.GB * task.attempt, 'memory' ) }
|
2021-06-04 06:22:54 -04:00
|
|
|
time = { task.attempt == 3 ? 1440.h : 48.h }
|
2021-01-19 07:53:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-11 03:18:36 -04:00
|
|
|
microbiome_screening {
|
|
|
|
process {
|
|
|
|
// Assuming NCBI NT-sized DB
|
|
|
|
withName: malt {
|
|
|
|
maxRetries = 1
|
|
|
|
memory = 1900.GB
|
|
|
|
cpus = 112
|
|
|
|
time = 1440.h
|
|
|
|
queue = 'supercruncher'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-08 03:47:03 -04:00
|
|
|
// IMPORTANT this profile is not reproducible due to hardcoded paths. For initial/automated screening ONLY.
|
2020-07-07 08:31:11 -04:00
|
|
|
hops {
|
2020-07-08 02:36:04 -04:00
|
|
|
params {
|
2020-07-08 04:45:43 -04:00
|
|
|
config_profile_description = 'Rough HOPS screening MPI-SHH profile, provided by nf-core/configs.'
|
2020-07-07 08:31:11 -04:00
|
|
|
fasta = '/projects1/Reference_Genomes/Human/HG19/hg19_complete.fasta'
|
2021-06-07 04:48:35 -04:00
|
|
|
bwa_index = '/projects1/Reference_Genomes/Human/HG19/'
|
2020-07-07 08:31:11 -04:00
|
|
|
fasta_index = '/projects1/Reference_Genomes/Human/HG19/hg19_complete.fasta.fai'
|
|
|
|
seq_dict = '/projects1/Reference_Genomes/Human/HG19/hg19_complete.dict'
|
2020-07-08 09:22:33 -04:00
|
|
|
bwaalnn = 0.01
|
|
|
|
bwaalnl = 16
|
2020-07-07 08:31:11 -04:00
|
|
|
run_bam_filtering = true
|
|
|
|
bam_unmapped_type = 'fastq'
|
|
|
|
run_metagenomic_screening = true
|
|
|
|
metagenomic_tool = 'malt'
|
|
|
|
metagenomic_min_support_reads = 1
|
|
|
|
database = '/projects1/malt/databases/indexed/index040/full-bac-full-vir-etal-nov_2017'
|
2020-07-08 09:22:33 -04:00
|
|
|
percent_identity = 85
|
2020-07-07 08:31:11 -04:00
|
|
|
malt_mode = 'BlastN'
|
|
|
|
malt_alignment_mode = 'SemiGlobal'
|
|
|
|
malt_top_percent = 1
|
2020-07-08 09:22:33 -04:00
|
|
|
malt_min_support_mode = 'reads'
|
2020-07-07 08:31:11 -04:00
|
|
|
malt_max_queries = 100
|
|
|
|
malt_memory_mode = 'load'
|
|
|
|
run_maltextract = true
|
|
|
|
maltextract_taxon_list = '/projects1/users/key/anc5h/soi.backup/List_of_pathogens_KB_fmk12_wViruses1.txt'
|
|
|
|
maltextract_ncbifiles = '/projects1/clusterhomes/huebler/RMASifter/RMA_Extractor_Resources/'
|
|
|
|
maltextract_filter = 'def_anc'
|
|
|
|
maltextract_toppercent = 0.01
|
|
|
|
maltextract_destackingoff = false
|
|
|
|
maltextract_downsamplingoff = false
|
|
|
|
maltextract_duplicateremovaloff = false
|
|
|
|
maltextract_matches = false
|
2020-07-08 09:22:33 -04:00
|
|
|
maltextract_megansummary = true
|
|
|
|
maltextract_percentidentity = 85.0
|
2020-07-08 03:36:56 -04:00
|
|
|
maltextract_topalignment = false
|
2020-07-07 08:31:11 -04:00
|
|
|
}
|
|
|
|
}
|
2020-05-26 05:11:42 -04:00
|
|
|
pathogen_loose {
|
|
|
|
params {
|
|
|
|
config_profile_description = 'Pathogen (loose) MPI-SHH profile, provided by nf-core/configs.'
|
|
|
|
bwaalnn = 0.01
|
|
|
|
bwaalnl = 16
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pathogen_strict {
|
|
|
|
params {
|
|
|
|
config_profile_description = 'Pathogen (strict) MPI-SHH SDAG profile, provided by nf-core/configs.'
|
|
|
|
bwaalnn = 0.1
|
|
|
|
bwaalnl = 32
|
|
|
|
}
|
|
|
|
}
|
|
|
|
human {
|
|
|
|
params {
|
|
|
|
config_profile_description = 'Human MPI-SHH SDAG profile, provided by nf-core/configs.'
|
|
|
|
bwaalnn = 0.01
|
|
|
|
bwaalnl = 16500
|
|
|
|
}
|
|
|
|
}
|
2020-05-04 15:02:16 -04:00
|
|
|
}
|