Skip to content

Commit

Permalink
Merge pull request #10 from 4dn-dcic/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
SooLee authored Sep 14, 2017
2 parents d555212 + 3a7f291 commit 54b6309
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ sudo: false
language: python
env:
- BENCHMARK_TEST=1
- CWL_NAME=pairsam-parse-sort
- CWL_NAME=extract-mcool-normvector-for-juicebox
- CWL_NAME=md5
- CWL_NAME=fastqc-0-11-4-1
Expand All @@ -10,7 +11,6 @@ env:
- CWL_NAME=hi-c-processing-partc
- CWL_NAME=bwa-mem
python:
- '3.5'
- '2.7'
os:
- linux
Expand Down
2 changes: 1 addition & 1 deletion Benchmark/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "0.1.1"
__version__ = "0.1.2"
22 changes: 17 additions & 5 deletions cwl_awsem/pairsam-parse-sort.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,22 @@
],
"inputBinding": {
"separate": true,
"position": 3
"position": 2
},
"id": "#chromsize"
},
{
"default": ".",
"type": [
"null",
"string"
],
"inputBinding": {
"separate": true,
"position": 3
},
"id": "#outdir"
},
{
"default": "out",
"type": [
Expand All @@ -33,7 +45,7 @@
],
"inputBinding": {
"separate": true,
"position": 2
"position": 4
},
"id": "#outprefix"
},
Expand All @@ -43,7 +55,7 @@
],
"id": "#Threads",
"inputBinding": {
"position": 4,
"position": 5,
"separate": true
},
"default": 8
Expand All @@ -55,7 +67,7 @@
],
"inputBinding": {
"separate": true,
"position": 5
"position": 6
},
"id": "#compress_programm"
},
Expand All @@ -70,7 +82,7 @@
"null",
"File"
],
"id": "#out_pairs"
"id": "#out_pairsam"
}
],
"cwlVersion": "draft-3",
Expand Down
Binary file added tests/test_files/test.bam
Binary file not shown.
11 changes: 11 additions & 0 deletions tests/test_input_json/pairsam-parse-sort.input.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"bam": {
"class": "File",
"path": "../test_files/test.bam"
},
"chromsize": {
"class": "File",
"path": "../test_files/hg38.mainonly.chrom.sizes"
},
"nThreads": 1
}

0 comments on commit 54b6309

Please sign in to comment.