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:
parent
e31e781f29
commit
d070ed70d1
1 changed files with 27 additions and 4 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue