-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BugFix: Addresses chr mismatch issue for ASCAT
- Loading branch information
Showing
4 changed files
with
51 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
|
||
params { | ||
config_profile_name = 'mskilab-org NYU BigPurple Cluster Profile' | ||
config_profile_description = """ | ||
mskilab-org NYU School of Medicine BigPurple cluster profile to run nf-JaBbA. | ||
!!Make sure to load both singularity/3.1 and squashfs-tools/4.3 before running nf-JaBbA with this profile!! | ||
Ideal to make work folder on scratch as it generates whole lot of temporary files to run the pipeline | ||
Make sure to submit the run as an SBATCH job since we don't own our own node at NYU yet!! | ||
""".stripIndent() | ||
config_profile_contact = "Tanubrata Dey ([email protected])" | ||
config_profile_url = "https://www.mskilab.org/" | ||
|
||
// Resources | ||
max_memory = 700.GB | ||
max_cpus = 256 | ||
max_time = 10.d | ||
} | ||
process { | ||
|
||
// default SLURM node config | ||
beforeScript = """ | ||
module load singularity/3.9.8 | ||
module load squashfs-tools/4.3 | ||
""" | ||
.stripIndent() | ||
|
||
executor='slurm' | ||
|
||
// memory errors which should be retried. otherwise error out | ||
errorStrategy = { task.exitStatus in ((130..145) + 104) ? 'retry' : 'finish' } | ||
maxRetries = 3 | ||
maxErrors = '-1' | ||
|
||
} | ||
executor { | ||
name = 'slurm' | ||
queueSize = 500 | ||
submitRateLimit = '10 sec' | ||
} | ||
singularity { | ||
enabled = true | ||
autoMounts = true | ||
cacheDir = "/gpfs/data/imielinskilab/singularity_files/nextflow_singularity_cache" | ||
} | ||
|
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