Skip to content

Commit 3260451

Browse files
authored
Merge pull request #376 from ENCODE-DCC/hotfix_py2_in_filter_task
Hotfix py2 in filter task
2 parents b54c9a3 + 44f86fe commit 3260451

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

atac.wdl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ struct RuntimeEnvironment {
77
}
88

99
workflow atac {
10-
String pipeline_ver = 'v2.1.2'
10+
String pipeline_ver = 'v2.1.3'
1111

1212
meta {
13-
version: 'v2.1.2'
13+
version: 'v2.1.3'
1414

1515
author: 'Jin wook Lee'
1616
email: 'leepc12@gmail.com'
@@ -19,8 +19,8 @@ workflow atac {
1919

2020
specification_document: 'https://docs.google.com/document/d/1f0Cm4vRyDQDu0bMehHD7P7KOMxTOP-HiNoIvL1VcBt8/edit?usp=sharing'
2121

22-
default_docker: 'encodedcc/atac-seq-pipeline:v2.1.2'
23-
default_singularity: 'https://encode-pipeline-singularity-image.s3.us-west-2.amazonaws.com/atac-seq-pipeline_v2.1.2.sif'
22+
default_docker: 'encodedcc/atac-seq-pipeline:v2.1.3'
23+
default_singularity: 'https://encode-pipeline-singularity-image.s3.us-west-2.amazonaws.com/atac-seq-pipeline_v2.1.3.sif'
2424
default_conda: 'encode-atac-seq-pipeline'
2525
croo_out_def: 'https://storage.googleapis.com/encode-pipeline-output-definition/atac.croo.v5.json'
2626

@@ -72,8 +72,8 @@ workflow atac {
7272
}
7373
input {
7474
# group: runtime_environment
75-
String docker = 'encodedcc/atac-seq-pipeline:v2.1.2'
76-
String singularity = 'https://encode-pipeline-singularity-image.s3.us-west-2.amazonaws.com/atac-seq-pipeline_v2.1.2.sif'
75+
String docker = 'encodedcc/atac-seq-pipeline:v2.1.3'
76+
String singularity = 'https://encode-pipeline-singularity-image.s3.us-west-2.amazonaws.com/atac-seq-pipeline_v2.1.3.sif'
7777
String conda = 'encode-atac-seq-pipeline'
7878
String conda_macs2 = 'encode-atac-seq-pipeline-macs2'
7979
String conda_spp = 'encode-atac-seq-pipeline-spp'

src/assign_multimappers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python2
1+
#!/usr/bin/env python3
22

33
# piped script to take multimappers and randomly assign
44
# requires a qname sorted file!!

0 commit comments

Comments
 (0)