Skip to content

Commit

Permalink
Merge pull request #67 from ICGC-TCGA-PanCancer/dev
Browse files Browse the repository at this point in the history
Fix some doc and path issues
  • Loading branch information
keiranmraine committed Feb 24, 2015
2 parents 210589c + 786a0ef commit a214c4e
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion MYMETA.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,5 @@
}
},
"release_status" : "stable",
"version" : "v1.5.1"
"version" : "v1.5.2"
}
2 changes: 1 addition & 1 deletion MYMETA.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ requires:
Test::Fatal: '0.013'
Try::Tiny: '0.19'
XML::Simple: '2.2'
version: v1.5.1
version: v1.5.2
5 changes: 3 additions & 2 deletions bin/bamToBw.pl
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ BEGIN
use PCAP::Threaded;
use version;

const my @VALID_PROCESS => qw(bamToBw catBw generateBw);
const my @VALID_PROCESS => qw(bamToBw mergeBw generateBw);
const my %INDEX_FACTOR => ( 'bamToBw' => -1,
'mergeBw' => 1,
'generateBw' => 1,
Expand Down Expand Up @@ -189,7 +189,8 @@ =head1 SYNOPSIS
bamToBw.pl -b in.bam -o out.bw -p bamToBw -i 1..X
# X can be determined with 'bamToBw.pl -b in.bam -o out.bw -j'
# once all above steps completed
bamToBw.pl -b in.bam -o out.bw -p catBw -i 1
bamToBw.pl -b in.bam -o out.bw -p mergeBw -i 1
bamToBw.pl -b in.bam -o out.bw -p generateBw -i 1
Run with '-m' for possible input file types.
Expand Down
2 changes: 1 addition & 1 deletion c/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=1.5.1
VERSION=1.5.2

#Compiler
CC = gcc -O3 -DVERSION='"$(VERSION)"' -g
Expand Down
Binary file modified docs.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/PCAP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use strict;
use Const::Fast qw(const);
use base 'Exporter';

our $VERSION = '1.5.1';
our $VERSION = '1.5.2';
our @EXPORT = qw($VERSION);

const my $LICENSE =>
Expand Down
2 changes: 1 addition & 1 deletion setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ SOURCE_SAMTOOLS="https://github.com/samtools/samtools/archive/0.1.20.tar.gz"
SOURCE_HTSLIB="https://github.com/samtools/htslib/archive/1.1.tar.gz"

# for bigwig
SOURCE_JKENT_BIN="https://github.com/ENCODE-DCC/kentUtils/tree/master/bin/linux.x86_64"
SOURCE_JKENT_BIN="https://github.com/ENCODE-DCC/kentUtils/raw/master/bin/linux.x86_64"

done_message () {
if [ $? -eq 0 ]; then
Expand Down

0 comments on commit a214c4e

Please sign in to comment.