forked from nf-core/configs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into custom-eager-crick
- Loading branch information
Showing
66 changed files
with
1,543 additions
and
378 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,67 @@ | ||
//Nextflow config file for running on Azure batch | ||
params { | ||
config_profile_description = 'Azure BATCH Cloud Profile' | ||
config_profile_contact = 'Venkat Malladi (@vsmalladi)' | ||
config_profile_contact = 'Venkat Malladi (@vsmalladi) & Adam Talbot (@adamrtalbot)' | ||
config_profile_url = 'https://azure.microsoft.com/services/batch/' | ||
|
||
az_location = 'westus2' | ||
batch_name = false | ||
batch_key = false | ||
storage_name = false | ||
sas_token = false | ||
} | ||
// Storage | ||
storage_name = null | ||
storage_key = null | ||
storage_sas = null | ||
|
||
// Batch | ||
az_location = "westus2" | ||
batch_name = null | ||
batch_key = null | ||
|
||
vm_type = "Standard_D8s_v3" | ||
autopoolmode = true | ||
allowpoolcreation = true | ||
deletejobs = true | ||
deletepools = true | ||
az_worker_pool = "auto" | ||
|
||
// ACR | ||
acr_registry = null | ||
acr_username = null | ||
acr_password = null | ||
|
||
docker { | ||
enabled = true | ||
} | ||
|
||
process { | ||
executor = "azurebatch" | ||
} | ||
|
||
azure.batch.location = params.az_location | ||
azure.batch.accountName = params.batch_name | ||
azure.batch.accountKey = params.batch_key | ||
azure.batch.autoPoolMode = true | ||
azure.storage.accountName = params.storage_name | ||
azure.storage.sasToken = params.sas_token | ||
process.executor = 'azurebatch' | ||
azure { | ||
process { | ||
queue = params.az_worker_pool | ||
} | ||
storage { | ||
accountName = params.storage_name | ||
accountKey = params.storage_key | ||
sasToken = params.storage_sas | ||
} | ||
batch { | ||
location = params.az_location | ||
accountName = params.batch_name | ||
accountKey = params.batch_key | ||
tokenDuration = "24h" | ||
autoPoolMode = params.autopoolmode | ||
allowPoolCreation = params.allowpoolcreation | ||
deleteJobsOnCompletion = params.deletejobs | ||
deletePoolsOnCompletion = params.deletepools | ||
pools { | ||
auto { | ||
vmType = params.vm_type | ||
autoScale = true | ||
vmCount = 1 | ||
maxVmCount = 12 | ||
} | ||
} | ||
} | ||
registry { | ||
server = params.acr_registry | ||
userName = params.acr_username | ||
password = params.acr_password | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
params { | ||
config_profile_description = 'USDA ARS SCINet Ceres Cluster profile' | ||
config_profile_contact = 'Thomas A. Christensen II (@MillironX)' | ||
config_profile_url = 'https://scinet.usda.gov/guide/ceres/' | ||
|
||
max_memory = 640.GB | ||
max_cpus = 36 | ||
max_time = 60.d | ||
} | ||
|
||
singularity { | ||
enabled = true | ||
autoMounts = true | ||
} | ||
|
||
process { | ||
executor = 'slurm' | ||
scratch = true | ||
queue = { | ||
switch (task.memory) { | ||
case { it >= 216.GB }: | ||
switch (task.time) { | ||
case { it >= 7.d }: | ||
return 'longmem' | ||
default: | ||
return 'mem' | ||
} | ||
default: | ||
switch (task.time) { | ||
case { it >= 21.d }: | ||
return 'long60' | ||
case { it >= 7.d }: | ||
return 'long' | ||
case { it >= 48.h }: | ||
return 'medium' | ||
default: | ||
return 'short' | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
//Profile config names for nf-core/configs | ||
params { | ||
config_profile_description = 'Centre for Genomic Regulation (CRG) cluster profile provided by nf-core/configs' | ||
config_profile_contact = 'Athanasios Baltzis (@athbaltzis)' | ||
config_profile_url = 'http://www.linux.crg.es/index.php/Main_Page' | ||
} | ||
|
||
process { | ||
executor = 'crg' | ||
} | ||
|
||
singularity { | ||
enabled = true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
|
||
params { | ||
config_profile_contact = 'Kübra Narcı [email protected]' | ||
config_profile_name = 'DKFZ cluster' | ||
|
||
max_cpus = 30 | ||
max_memory = '250.GB' | ||
max_time = '48.h' | ||
} | ||
|
||
|
||
singularity { | ||
enabled = true | ||
autoMounts = true | ||
} | ||
|
||
process { | ||
executor = 'lsf' | ||
scratch = '$SCRATCHDIR/$LSB_JOBID' | ||
|
||
} | ||
executor { | ||
name = 'lsf' | ||
perTaskReserve = false | ||
perJobMemLimit = true | ||
queueSize = 10 | ||
submitRateLimit = '3 sec' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// Nextflow config for running on the MIT Engaging HPC cluster | ||
params { | ||
config_profile_description = 'MIT Engaging HPC cluster profile.' | ||
config_profile_contact = 'Phil Palmer (@PhilPalmer)' | ||
config_profile_url = "https://engaging-web.mit.edu/eofe-wiki/" | ||
} | ||
|
||
singularity { | ||
enabled = true | ||
autoMounts = true | ||
} | ||
|
||
process { | ||
executor = 'slurm' | ||
clusterOptions = '-p sched_mit_hill' | ||
} | ||
|
||
params { | ||
max_memory = 64.GB | ||
max_cpus = 16 | ||
max_time = 12.h | ||
} |
Oops, something went wrong.