Skip to content

Commit da055f9

Browse files
committed
ver: v1.2.1 -> v1.2.2
1 parent b8a127d commit da055f9

20 files changed

+41
-41
lines changed

chip.wdl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# ENCODE DCC TF/Histone ChIP-Seq pipeline
22
# Author: Jin Lee (leepc12@gmail.com)
33
4-
#CAPER docker quay.io/encode-dcc/chip-seq-pipeline:v1.2.1
5-
#CAPER singularity docker://quay.io/encode-dcc/chip-seq-pipeline:v1.2.1
4+
#CAPER docker quay.io/encode-dcc/chip-seq-pipeline:v1.2.2
5+
#CAPER singularity docker://quay.io/encode-dcc/chip-seq-pipeline:v1.2.2
66
#CROO out_def https://storage.googleapis.com/encode-pipeline-output-definition/chip.out_def.json
77
88
workflow chip {
9-
String pipeline_ver = 'v1.2.1'
9+
String pipeline_ver = 'v1.2.2'
1010
### sample name, description
1111
String title = 'Untitled'
1212
String description = 'No description'

docs/deprecated/tutorial_local_singularity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
6. Pull a singularity container for the pipeline. This will pull pipeline's docker container first and build a singularity one on `~/.singularity`.
3535
```bash
36-
$ mkdir -p ~/.singularity && cd ~/.singularity && SINGULARITY_CACHEDIR=~/.singularity SINGULARITY_PULLFOLDER=~/.singularity singularity pull --name chip-seq-pipeline-v1.2.1.simg -F docker://quay.io/encode-dcc/chip-seq-pipeline:v1.2.1
36+
$ mkdir -p ~/.singularity && cd ~/.singularity && SINGULARITY_CACHEDIR=~/.singularity SINGULARITY_PULLFOLDER=~/.singularity singularity pull --name chip-seq-pipeline-v1.2.2.simg -F docker://quay.io/encode-dcc/chip-seq-pipeline:v1.2.2
3737
```
3838
3939
7. Run a pipeline for the test sample.
@@ -53,7 +53,7 @@
5353
```javascript
5454
{
5555
"default_runtime_attributes" : {
56-
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.1.simg",
56+
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.2.simg",
5757
"singularity_bindpath" : "/your/,YOUR_OWN_DATA_DIR1,YOUR_OWN_DATA_DIR2,..."
5858
}
5959
}

docs/deprecated/tutorial_scg.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Our pipeline supports both [Conda](https://conda.io/docs/) and [Singularity](htt
6363
```javascript
6464
{
6565
"default_runtime_attributes" : {
66-
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.1.simg",
66+
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.2.simg",
6767
"singularity_bindpath" : "/reference/ENCODE,/scratch,/srv/gsfs0,YOUR_OWN_DATA_DIR1,YOUR_OWN_DATA_DIR1,..."
6868
}
6969
}

docs/deprecated/tutorial_scg_backend.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Our pipeline supports both [Conda](https://conda.io/docs/) and [Singularity](htt
5858
5. Pull a singularity container for the pipeline. This will pull pipeline's docker container first and build a singularity one on `~/.singularity`.
5959
```bash
6060
$ sdev # SCG cluster does not allow building a container on login node
61-
$ mkdir -p ~/.singularity && cd ~/.singularity && SINGULARITY_CACHEDIR=~/.singularity SINGULARITY_PULLFOLDER=~/.singularity singularity pull --name chip-seq-pipeline-v1.2.1.simg -F docker://quay.io/encode-dcc/chip-seq-pipeline:v1.2.1
61+
$ mkdir -p ~/.singularity && cd ~/.singularity && SINGULARITY_CACHEDIR=~/.singularity SINGULARITY_PULLFOLDER=~/.singularity singularity pull --name chip-seq-pipeline-v1.2.2.simg -F docker://quay.io/encode-dcc/chip-seq-pipeline:v1.2.2
6262
$ exit
6363
```
6464
@@ -77,7 +77,7 @@ Our pipeline supports both [Conda](https://conda.io/docs/) and [Singularity](htt
7777
```javascript
7878
{
7979
"default_runtime_attributes" : {
80-
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.1.simg",
80+
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.2.simg",
8181
"singularity_bindpath" : "/scratch/users,/srv/gsfs0,/your/,YOUR_OWN_DATA_DIR1,YOUR_OWN_DATA_DIR1,..."
8282
}
8383
}

docs/deprecated/tutorial_sge.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Our pipeline supports both [Conda](https://conda.io/docs/) and [Singularity](htt
6161

6262
7. Pull a singularity container for the pipeline. This will pull pipeline's docker container first and build a singularity one on `~/.singularity`.
6363
```bash
64-
$ mkdir -p ~/.singularity && cd ~/.singularity && SINGULARITY_CACHEDIR=~/.singularity SINGULARITY_PULLFOLDER=~/.singularity singularity pull --name chip-seq-pipeline-v1.2.1.simg -F docker://quay.io/encode-dcc/chip-seq-pipeline:v1.2.1
64+
$ mkdir -p ~/.singularity && cd ~/.singularity && SINGULARITY_CACHEDIR=~/.singularity SINGULARITY_PULLFOLDER=~/.singularity singularity pull --name chip-seq-pipeline-v1.2.2.simg -F docker://quay.io/encode-dcc/chip-seq-pipeline:v1.2.2
6565
```
6666
6767
8. Run a pipeline for the test sample. If your parallel environment (PE) found from step 5) has a different name from `shm` then edit the following shell script to change the PE name.
@@ -83,7 +83,7 @@ Our pipeline supports both [Conda](https://conda.io/docs/) and [Singularity](htt
8383
```javascript
8484
{
8585
"default_runtime_attributes" : {
86-
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.1.simg",
86+
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.2.simg",
8787
"singularity_bindpath" : "/your/,YOUR_OWN_DATA_DIR1,YOUR_OWN_DATA_DIR2,..."
8888
}
8989
}

docs/deprecated/tutorial_sge_backend.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Our pipeline supports both [Conda](https://conda.io/docs/) and [Singularity](htt
6868
6969
7. Pull a singularity container for the pipeline. This will pull pipeline's docker container first and build a singularity one on `~/.singularity`.
7070
```bash
71-
$ mkdir -p ~/.singularity && cd ~/.singularity && SINGULARITY_CACHEDIR=~/.singularity SINGULARITY_PULLFOLDER=~/.singularity singularity pull --name chip-seq-pipeline-v1.2.1.simg -F docker://quay.io/encode-dcc/chip-seq-pipeline:v1.1
71+
$ mkdir -p ~/.singularity && cd ~/.singularity && SINGULARITY_CACHEDIR=~/.singularity SINGULARITY_PULLFOLDER=~/.singularity singularity pull --name chip-seq-pipeline-v1.2.2.simg -F docker://quay.io/encode-dcc/chip-seq-pipeline:v1.1
7272
```
7373

7474
8. Run a pipeline for the test sample.

docs/deprecated/tutorial_sherlock.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Our pipeline supports both [Conda](https://conda.io/docs/) and [Singularity](htt
6868
```javascript
6969
{
7070
"default_runtime_attributes" : {
71-
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.1.simg",
71+
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.2.simg",
7272
"singularity_bindpath" : "/scratch,/lscratch,/oak/stanford,/home/groups/cherry/encode,/your/,YOUR_OWN_DATA_DIR1,YOUR_OWN_DATA_DIR1,..."
7373
}
7474
}

docs/deprecated/tutorial_sherlock_backend.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Our pipeline supports both [Conda](https://conda.io/docs/) and [Singularity](htt
6363
6. Pull a singularity container for the pipeline. This will pull pipeline's docker container first and build a singularity one on `~/.singularity`. Stanford Sherlock does not allow building a container on login nodes. Wait until you get a command prompt after `sdev`.
6464
```bash
6565
$ sdev # sherlock cluster does not allow building a container on login node
66-
$ mkdir -p ~/.singularity && cd ~/.singularity && SINGULARITY_CACHEDIR=~/.singularity SINGULARITY_PULLFOLDER=~/.singularity singularity pull --name chip-seq-pipeline-v1.2.1.simg -F docker://quay.io/encode-dcc/chip-seq-pipeline:v1.2.1
66+
$ mkdir -p ~/.singularity && cd ~/.singularity && SINGULARITY_CACHEDIR=~/.singularity SINGULARITY_PULLFOLDER=~/.singularity singularity pull --name chip-seq-pipeline-v1.2.2.simg -F docker://quay.io/encode-dcc/chip-seq-pipeline:v1.2.2
6767
$ exit # exit from an interactive node
6868
```
6969
@@ -82,7 +82,7 @@ Our pipeline supports both [Conda](https://conda.io/docs/) and [Singularity](htt
8282
```javascript
8383
{
8484
"default_runtime_attributes" : {
85-
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.1.simg",
85+
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.2.simg",
8686
"singularity_bindpath" : "/scratch,/oak/stanford,/your/,YOUR_OWN_DATA_DIR1,YOUR_OWN_DATA_DIR1,..."
8787
}
8888
}

docs/deprecated/tutorial_slurm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Our pipeline supports both [Conda](https://conda.io/docs/) and [Singularity](htt
5656
5757
7. Pull a singularity container for the pipeline. This will pull pipeline's docker container first and build a singularity one on `~/.singularity`.
5858
```bash
59-
$ mkdir -p ~/.singularity && cd ~/.singularity && SINGULARITY_CACHEDIR=~/.singularity SINGULARITY_PULLFOLDER=~/.singularity singularity pull --name chip-seq-pipeline-v1.2.1.simg -F docker://quay.io/encode-dcc/chip-seq-pipeline:v1.2.1
59+
$ mkdir -p ~/.singularity && cd ~/.singularity && SINGULARITY_CACHEDIR=~/.singularity SINGULARITY_PULLFOLDER=~/.singularity singularity pull --name chip-seq-pipeline-v1.2.2.simg -F docker://quay.io/encode-dcc/chip-seq-pipeline:v1.2.2
6060
```
6161

6262
8. Run a pipeline for the test sample. If your cluster requires to specify any of them then add one to the command line.
@@ -78,7 +78,7 @@ Our pipeline supports both [Conda](https://conda.io/docs/) and [Singularity](htt
7878
```javascript
7979
{
8080
"default_runtime_attributes" : {
81-
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.1.simg",
81+
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.2.simg",
8282
"singularity_bindpath" : "/your/,YOUR_OWN_DATA_DIR1,YOUR_OWN_DATA_DIR2,..."
8383
}
8484
}

docs/deprecated/tutorial_slurm_backend.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Our pipeline supports both [Conda](https://conda.io/docs/) and [Singularity](htt
6868
6969
7. Pull a singularity container for the pipeline. This will pull pipeline's docker container first and build a singularity one on `~/.singularity`.
7070
```bash
71-
$ mkdir -p ~/.singularity && cd ~/.singularity && SINGULARITY_CACHEDIR=~/.singularity SINGULARITY_PULLFOLDER=~/.singularity singularity pull --name chip-seq-pipeline-v1.2.1.simg -F docker://quay.io/encode-dcc/chip-seq-pipeline:v1.2.1
71+
$ mkdir -p ~/.singularity && cd ~/.singularity && SINGULARITY_CACHEDIR=~/.singularity SINGULARITY_PULLFOLDER=~/.singularity singularity pull --name chip-seq-pipeline-v1.2.2.simg -F docker://quay.io/encode-dcc/chip-seq-pipeline:v1.2.2
7272
```
7373

7474
8. Run a pipeline for the test sample.
@@ -86,7 +86,7 @@ Our pipeline supports both [Conda](https://conda.io/docs/) and [Singularity](htt
8686
```javascript
8787
{
8888
"default_runtime_attributes" : {
89-
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.1.simg",
89+
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.2.simg",
9090
"singularity_bindpath" : "/your/,YOUR_OWN_DATA_DIR1,YOUR_OWN_DATA_DIR2,..."
9191
}
9292
}

docs/dev.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
## Command line for version change
44
```bash
5-
PREV_VER=v1.2.1
6-
NEW_VER=v1.2.1
5+
PREV_VER=v1.2.2
6+
NEW_VER=v1.2.2
77
for f in $(grep -rl ${PREV_VER} --include=*.{wdl,md,sh})
88
do
99
sed -i "s/${PREV_VER}/${NEW_VER}/g" ${f}
@@ -24,7 +24,7 @@ Run the following command line locally to build out DX workflows for this pipeli
2424

2525
```bash
2626
# version
27-
VER=v1.2.1
27+
VER=v1.2.2
2828

2929
# general
3030
java -jar ~/dxWDL-0.77.jar compile chip.wdl -project "ENCODE Uniform Processing Pipelines" -extras workflow_opts/docker.json -f -folder /ChIP-seq2/workflows/$VER/general -defaults examples/dx/template_general.json

docs/tutorial_dx_web.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ This document describes instruction for the item 2).
1515

1616
3. Move to one of the following workflow directories according to the platform you have chosen for your project (AWS or Azure). These DX workflows are pre-built with all parameters defined.
1717

18-
* [AWS test workflow](https://platform.DNAnexus.com/projects/BKpvFg00VBPV975PgJ6Q03v6/data/ChIP-seq2/workflows/v1.2.1/test_ENCSR936XTK_subsampled_chr19_only)
19-
* [Azure test workflow](https://platform.DNAnexus.com/projects/F6K911Q9xyfgJ36JFzv03Z5J/data/ChIP-seq2/workflows/v1.2.1/test_ENCSR936XTK_subsampled_chr19_only)
18+
* [AWS test workflow](https://platform.DNAnexus.com/projects/BKpvFg00VBPV975PgJ6Q03v6/data/ChIP-seq2/workflows/v1.2.2/test_ENCSR936XTK_subsampled_chr19_only)
19+
* [Azure test workflow](https://platform.DNAnexus.com/projects/F6K911Q9xyfgJ36JFzv03Z5J/data/ChIP-seq2/workflows/v1.2.2/test_ENCSR936XTK_subsampled_chr19_only)
2020

2121
4. Copy it to your project by right-clicking on the DX workflow `chip` and choose "Copy".
2222

@@ -40,16 +40,16 @@ This document describes instruction for the item 2).
4040
1. DNAnexus allows only one copy of a workflow per project. The example workflow in the previous section is pre-built for the subsampled test sample [ENCSR936XTK](https://www.encodeproject.org/experiments/ENCSR936XTK/) with all parameters defined already.
4141

4242
2. Copy one of the following workflows according to the platform you have chosen for your project (AWS or Azure).
43-
* [AWS general](https://platform.DNAnexus.com/projects/BKpvFg00VBPV975PgJ6Q03v6/data/ChIP-seq2/workflows/v1.2.1/general) without pre-defined reference genome.
44-
* [AWS hg38](https://platform.DNAnexus.com/projects/BKpvFg00VBPV975PgJ6Q03v6/data/ChIP-seq2/workflows/v1.2.1/hg38) with pre-defined hg38 reference genome.
45-
* [AWS hg19](https://platform.DNAnexus.com/projects/BKpvFg00VBPV975PgJ6Q03v6/data/ChIP-seq2/workflows/v1.2.1/hg19) with pre-defined hg19 reference genome.
46-
* [AWS mm10](https://platform.DNAnexus.com/projects/BKpvFg00VBPV975PgJ6Q03v6/data/ChIP-seq2/workflows/v1.2.1/mm10) with pre-defined mm10 reference genome.
47-
* [AWS mm9](https://platform.DNAnexus.com/projects/BKpvFg00VBPV975PgJ6Q03v6/data/ChIP-seq2/workflows/v1.2.1/mm9) with pre-defined mm9 reference genome.
48-
* [Azure general](https://platform.DNAnexus.com/projects/F6K911Q9xyfgJ36JFzv03Z5J/data/ChIP-seq2/workflows/v1.2.1/general) without pre-defined reference genome.
49-
* [Azure hg38](https://platform.DNAnexus.com/projects/F6K911Q9xyfgJ36JFzv03Z5J/data/ChIP-seq2/workflows/v1.2.1/hg38) with pre-defined hg38 reference genome.
50-
* [Azure hg19](https://platform.DNAnexus.com/projects/F6K911Q9xyfgJ36JFzv03Z5J/data/ChIP-seq2/workflows/v1.2.1/hg19) with pre-defined hg19 reference genome.
51-
* [Azure mm10](https://platform.DNAnexus.com/projects/F6K911Q9xyfgJ36JFzv03Z5J/data/ChIP-seq2/workflows/v1.2.1/mm10) with pre-defined mm10 reference genome.
52-
* [Azure mm9](https://platform.DNAnexus.com/projects/F6K911Q9xyfgJ36JFzv03Z5J/data/ChIP-seq2/workflows/v1.2.1/mm9) with pre-defined mm9 reference genome.
43+
* [AWS general](https://platform.DNAnexus.com/projects/BKpvFg00VBPV975PgJ6Q03v6/data/ChIP-seq2/workflows/v1.2.2/general) without pre-defined reference genome.
44+
* [AWS hg38](https://platform.DNAnexus.com/projects/BKpvFg00VBPV975PgJ6Q03v6/data/ChIP-seq2/workflows/v1.2.2/hg38) with pre-defined hg38 reference genome.
45+
* [AWS hg19](https://platform.DNAnexus.com/projects/BKpvFg00VBPV975PgJ6Q03v6/data/ChIP-seq2/workflows/v1.2.2/hg19) with pre-defined hg19 reference genome.
46+
* [AWS mm10](https://platform.DNAnexus.com/projects/BKpvFg00VBPV975PgJ6Q03v6/data/ChIP-seq2/workflows/v1.2.2/mm10) with pre-defined mm10 reference genome.
47+
* [AWS mm9](https://platform.DNAnexus.com/projects/BKpvFg00VBPV975PgJ6Q03v6/data/ChIP-seq2/workflows/v1.2.2/mm9) with pre-defined mm9 reference genome.
48+
* [Azure general](https://platform.DNAnexus.com/projects/F6K911Q9xyfgJ36JFzv03Z5J/data/ChIP-seq2/workflows/v1.2.2/general) without pre-defined reference genome.
49+
* [Azure hg38](https://platform.DNAnexus.com/projects/F6K911Q9xyfgJ36JFzv03Z5J/data/ChIP-seq2/workflows/v1.2.2/hg38) with pre-defined hg38 reference genome.
50+
* [Azure hg19](https://platform.DNAnexus.com/projects/F6K911Q9xyfgJ36JFzv03Z5J/data/ChIP-seq2/workflows/v1.2.2/hg19) with pre-defined hg19 reference genome.
51+
* [Azure mm10](https://platform.DNAnexus.com/projects/F6K911Q9xyfgJ36JFzv03Z5J/data/ChIP-seq2/workflows/v1.2.2/mm10) with pre-defined mm10 reference genome.
52+
* [Azure mm9](https://platform.DNAnexus.com/projects/F6K911Q9xyfgJ36JFzv03Z5J/data/ChIP-seq2/workflows/v1.2.2/mm9) with pre-defined mm9 reference genome.
5353

5454
3. Click on the DX workflow `chip`.
5555

test/test_task/test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ INPUT=$2
1212
if [ $# -gt 2 ]; then
1313
DOCKER_IMAGE=$3
1414
else
15-
DOCKER_IMAGE=quay.io/encode-dcc/chip-seq-pipeline:v1.2.1
15+
DOCKER_IMAGE=quay.io/encode-dcc/chip-seq-pipeline:v1.2.2
1616
fi
1717
if [ $# -gt 3 ]; then
1818
NUM_TASK=$4

test/test_workflow/test_chip.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fi
88
if [ $# -gt 2 ]; then
99
DOCKER_IMAGE=$3
1010
else
11-
DOCKER_IMAGE=quay.io/encode-dcc/chip-seq-pipeline:v1.2.1
11+
DOCKER_IMAGE=quay.io/encode-dcc/chip-seq-pipeline:v1.2.2
1212
fi
1313
INPUT=$1
1414
GCLOUD_SERVICE_ACCOUNT_SECRET_JSON_FILE=$2

workflow_opts/docker.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"default_runtime_attributes" : {
3-
"docker" : "quay.io/encode-dcc/chip-seq-pipeline:v1.2.1",
3+
"docker" : "quay.io/encode-dcc/chip-seq-pipeline:v1.2.2",
44
"zones": "us-west1-a us-west1-b us-west1-c us-central1-c us-central1-b",
55
"failOnStderr" : false,
66
"continueOnReturnCode" : 0,

workflow_opts/scg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"default_runtime_attributes" : {
33
"slurm_account" : "YOUR_SLURM_ACCOUNT",
4-
"singularity_container" : "/reference/ENCODE/pipeline_singularity_images/chip-seq-pipeline-v1.2.1.simg",
4+
"singularity_container" : "/reference/ENCODE/pipeline_singularity_images/chip-seq-pipeline-v1.2.2.simg",
55
"singularity_bindpath" : "/reference/ENCODE,/scratch,/srv/gsfs0"
66
}
77
}

workflow_opts/sge.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"default_runtime_attributes" : {
33
"sge_pe" : "shm",
4-
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.1.simg"
4+
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.2.simg"
55
}
66
}

workflow_opts/sherlock.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"default_runtime_attributes" : {
33
"slurm_partition" : "normal",
4-
"singularity_container" : "/home/groups/cherry/encode/pipeline_singularity_images/chip-seq-pipeline-v1.2.1.simg",
4+
"singularity_container" : "/home/groups/cherry/encode/pipeline_singularity_images/chip-seq-pipeline-v1.2.2.simg",
55
"singularity_bindpath" : "/scratch,/lscratch,/oak/stanford,/home/groups/cherry/encode"
66
}
77
}

workflow_opts/singularity.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"default_runtime_attributes" : {
3-
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.1.simg"
3+
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.2.simg"
44
}
55
}

workflow_opts/slurm.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"default_runtime_attributes" : {
33
"slurm_partition" : "YOUR_SLURM_PARTITION",
44
"slurm_account" : "YOUR_SLURM_ACCOUNT",
5-
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.1.simg"
5+
"singularity_container" : "~/.singularity/chip-seq-pipeline-v1.2.2.simg"
66
}
77
}

0 commit comments

Comments
 (0)