Skip to content
This repository has been archived by the owner on Sep 28, 2020. It is now read-only.

Commit

Permalink
Merge branch 'release/2.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
David Jones committed Feb 26, 2018
2 parents da0d188 + f05f651 commit ca20858
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGES

## 2.0.0

* Update to use [cgpBigWig-1.0.0](https://github.com/cancerit/cgpBigWig/releases/tag/1.0.0)
* Add `--overlap` support to appropriate cwls `bam2bedgraph` `bam2bw` `bam2bwbases`

## 1.0.0

* First container release uses [cgpBigWig-0.5.0](https://github.com/cancerit/cgpBigWig/releases/tag/0.5.0)
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ FROM ubuntu:16.04

LABEL maintainer="[email protected]"\
uk.ac.sanger.cgp="Cancer Genome Project, Wellcome Trust Sanger Institute" \
version="1.0.0" \
version="2.0.0" \
description="cgpBigWig for dockstore.org"

ENV OPT /opt/wtsi-cgp
Expand Down
2 changes: 1 addition & 1 deletion build/opt-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set -u

VER_HTSLIB="1.7"
VER_LIBBW="0.4.2"
VER_CGPBIGWIG="0.5.0"
VER_CGPBIGWIG="1.0.0"

if [ "$#" -lt "1" ] ; then
echo "Please provide an installation path such as /opt/ICGC"
Expand Down
5 changes: 5 additions & 0 deletions cwls/bam2bedgraph.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ inputs:
doc: "Ignore reads with the filter flags"
inputBinding:
prefix: --filter
overlap:
type: boolean
doc: "Flag to check for overlapping reads"
inputBinding:
prefix: --overlap

outputs:
output:
Expand Down
5 changes: 5 additions & 0 deletions cwls/bam2bw.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ inputs:
- .fai
inputBinding:
prefix: --reference
overlap:
type: boolean
doc: "Flag to check for overlapping reads"
inputBinding:
prefix: --overlap

outputs:
output:
Expand Down
5 changes: 5 additions & 0 deletions cwls/bam2bwbases.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ inputs:
type: File?
inputBinding:
prefix: --reference
overlap:
type: boolean
doc: "Flag to check for overlapping reads"
inputBinding:
prefix: --overlap


outputs:
Expand Down
4 changes: 3 additions & 1 deletion examples/bam2bedgraph.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,7 @@
"class": "File"
},

"filter": 3852
"filter": 3852,

"overlap": false
}
4 changes: 3 additions & 1 deletion examples/bam2bw.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
"reference": {
"path": "/your/path/to/GRCh37d5/genome.fa",
"class": "File"
}
},

"overlap": false

}
4 changes: 3 additions & 1 deletion examples/bam2bwbases.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,7 @@
"output_path": {
"path": "bam2bwbases.out.bw",
"class": "File"
}
},

"overlap": false
}

0 comments on commit ca20858

Please sign in to comment.