This repository was archived by the owner on Aug 23, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1+ ### 1.0.6
2+ * Fixes #13 - Parsing of sample name from BAM headers fails is sample at end of line
3+ * Update dockstore-cgpwxs to [ 2.0.7] ( https://github.com/cancerit/dockstore-cgpwxs/releases/tag/2.0.7 ) - Fixes bug in pindel core.
4+
15### 1.0.5
26* Improved handling of CPU oversubscription via PCAP-core update in base image
37* Update cgpCaVEManWrapper to expose extra options (specifically split size)
Original file line number Diff line number Diff line change 1- FROM quay.io/wtsicgp/dockstore-cgpwxs:2.0.6
1+ FROM quay.io/wtsicgp/dockstore-cgpwxs:2.0.7
22
33MAINTAINER keiranmraine@gmail.com
44
55LABEL uk.ac.sanger.cgp="Cancer Genome Project, Wellcome Trust Sanger Institute" \
6- version="1.0.5 " \
6+ version="1.0.6 " \
77 description="The CGP WGS pipeline for dockstore.org"
88
99USER root
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ dct:creator:
1919
2020requirements :
2121 - class: DockerRequirement
22- dockerPull: "quay.io/wtsicgp/dockstore-cgpwgs:1.0.5 "
22+ dockerPull: "quay.io/wtsicgp/dockstore-cgpwgs:1.0.6 "
2323
2424hints :
2525 - class: ResourceRequirement
Original file line number Diff line number Diff line change @@ -102,8 +102,8 @@ if [ ! -f $OUTPUT_DIR/pre-exec.done ]; then
102102fi
103103
104104# # get sample names from BAM headers
105- NAME_MT=` samtools view -H $BAM_MT | perl -ne ' if($_ =~ m/^\@RG/) {($sm) = $_ =~m/\tSM:([^\t]+)/; print "$sm\n";}' | uniq`
106- NAME_WT=` samtools view -H $BAM_WT | perl -ne ' if($_ =~ m/^\@RG/) {($sm) = $_ =~m/\tSM:([^\t]+)/; print "$sm\n";}' | uniq`
105+ NAME_MT=` samtools view -H $BAM_MT | perl -ne ' chomp; if($_ =~ m/^\@RG/) {($sm) = $_ =~m/\tSM:([^\t]+)/; print "$sm\n";}' | uniq`
106+ NAME_WT=` samtools view -H $BAM_WT | perl -ne ' chomp; if($_ =~ m/^\@RG/) {($sm) = $_ =~m/\tSM:([^\t]+)/; print "$sm\n";}' | uniq`
107107
108108echo -e " \tNAME_MT : $NAME_MT "
109109echo -e " \tNAME_WT : $NAME_WT "
You can’t perform that action at this time.
0 commit comments