-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* start use docker script * use pip script than src dir * add local/Lifebit support compatibility
- Loading branch information
1 parent
7773f74
commit 0555898
Showing
16 changed files
with
106 additions
and
108 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
docker.enabled = true | ||
|
||
params { | ||
executor = 'local' | ||
} | ||
|
||
/* | ||
* ------------------------------------------------- | ||
* Nextflow config for running on Local | ||
* ------------------------------------------------- | ||
* Defines bundled configurations for process running | ||
* on Local | ||
*/ | ||
process { | ||
container = params.docker_name | ||
executor = 'local' | ||
} |
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 |
---|---|---|
|
@@ -8,7 +8,8 @@ | |
#SBATCH --mem=20G # memory pool for all cores | ||
#SBATCH --time=02:00:00 # time | ||
#SBATCH --output=log/%x.%j.log # STDOUT & STDERR | ||
|
||
#SBATCH [email protected] | ||
#SBATCH --mail-type=END | ||
date; hostname; pwd | ||
|
||
# Base directory of running and output for nanome | ||
|
@@ -26,12 +27,12 @@ rm -rf ${workDir} ${outputsDir} | |
######################################## | ||
# Running pipeline for E. coli data | ||
module load singularity | ||
set -x | ||
set -ex | ||
nextflow run main.nf\ | ||
-profile singularity,hpc\ | ||
-config conf/executors/jaxhpc_input.config,conf/examples/ecoli_demo.config\ | ||
-work-dir ${workDir}\ | ||
--outputDir ${outputsDir}\ | ||
-config conf/executors/jaxhpc_input.config,conf/examples/ecoli_demo.config\ | ||
--cleanCache false | ||
|
||
# Report | ||
|
Oops, something went wrong.