1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-10 20:13:09 +00:00

Update BWA settings based on feedback

This commit is contained in:
James A. Fellows Yates 2020-05-26 11:11:42 +02:00 committed by GitHub
parent e31e781f29
commit d070ed70d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,8 +3,12 @@
params {
// Specific nf-core/configs params
config_profile_contact = 'James Fellows Yates (@jfy133)'
config_profile_description = 'JFY nf-core/eager SHH profile provided by nf-core/configs'
config_profile_description = 'nf-core/eager SHH profile provided by nf-core/configs'
igenomes_base = "/projects1/public_data/igenomes/"
// default BWA
bwaalnn = 0.04
bwaalnl = 32
}
// Specific nf-core/eager process configuration
@ -18,7 +22,26 @@ process {
}
}
params {
bwaalnn = 0.01
bwaalnl = 32
profiles {
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
}
}
}