-
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 'dev' into feature/remove-duplication-from-main-workflow
- Loading branch information
Showing
11 changed files
with
20 additions
and
129 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -26,4 +26,4 @@ slurm.*.err | |
|
||
# python cache and compiled files | ||
__pycache__/ | ||
*.pyc | ||
*.pyc |
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
Empty file.
File renamed without changes.
File renamed without changes.
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,46 +1,19 @@ | ||
/* | ||
======================================================================================== | ||
Nextflow config file for running tests | ||
======================================================================================== | ||
=========================================================================== | ||
Nextflow config file for running tests (GitHub Actions workflow) | ||
=========================================================================== | ||
*/ | ||
|
||
process.container = "vibpsb/mini-ac:latest" | ||
singularity { | ||
enabled = true | ||
cacheDir = "singularity_cache" | ||
autoMounts = true | ||
runOptions = "--bind $TMPDIR" | ||
runOptions = "--bind %TMP%" | ||
} | ||
|
||
workDir = "$TMPDIR/MINI-AC" | ||
|
||
// WHEN USING HPC SLURM UNCOMMENT THE CODE BELOW | ||
workDir = "%TMP%/MINI-AC" | ||
|
||
executor { | ||
name = 'slurm' | ||
queueSize = 25 | ||
} | ||
|
||
process { | ||
withName: get_ACR_shufflings { | ||
clusterOptions = '--mem 4G' | ||
} | ||
withName: getStats { | ||
clusterOptions = '--mem 10G' | ||
} | ||
withName: getStats_bps { | ||
clusterOptions = '--mem 50G' | ||
} | ||
withName: getNetwork { | ||
clusterOptions = '--mem 20G' | ||
} | ||
withName: filterSetOfGenes { | ||
clusterOptions = '--mem 5G' | ||
} | ||
withName: GOenrichment { | ||
clusterOptions = '--mem 5G' | ||
} | ||
withName: getIntegrativeOutputs { | ||
clusterOptions = '--mem 3G' | ||
} | ||
name = 'local' | ||
} |