Skip to content

Commit 217d3ce

Browse files
committed
Rolling 1.0.0
1 parent 0a23254 commit 217d3ce

File tree

7 files changed

+34
-17
lines changed

7 files changed

+34
-17
lines changed

Changes

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.0.0
2+
bam_stats.pl actually installed now.
3+
Basic *.bas perl access module.
4+
Upgraded libmaus/biobambam to resolve patch and CentOS install issue.
5+
Reference implementations ensure unique RG:ID between files.
16
0.3.0
27
Changes for the re-worked PanCancer submission SOP.
38
Patch for libmaus issue as not going to be a release in time.

INSTALL

+19-8
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,25 @@ OS:
1414
Other Software
1515
For installation to proceed you require the following packages:
1616

17-
zlib1g-dev
18-
g++
19-
dh-autoreconf
20-
libncurses-dev
21-
pkg-config
22-
libgd2-xpm-dev
23-
24-
This listing is based on Ubuntu 12.04
17+
For Ubuntu (tested with 12.04)
18+
apt-get
19+
zlib1g-dev
20+
g++
21+
dh-autoreconf
22+
libncurses-dev
23+
pkg-config
24+
libgd2-xpm-dev
25+
26+
For CentOS (tested with 6.4)
27+
yum install
28+
zlib-devel
29+
gcc-c++
30+
autoconf
31+
automake
32+
libtool
33+
boost-devel.x86_64
34+
ncurses-devel.x86_64
35+
gd-devel
2536

2637
setup.sh will install
2738
biobambam

MANIFEST

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ LICENSE
2121
Makefile.PL
2222
MANIFEST This list of files
2323
MANIFEST.SKIP
24-
patches/fileModeFix.diff
2524
prerelease.sh
2625
README.md
2726
setup.sh

MYMETA.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,5 @@
5353
}
5454
},
5555
"release_status" : "stable",
56-
"version" : "v0.3.0"
56+
"version" : "v1.0.0"
5757
}

MYMETA.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ requires:
3535
Term::UI: 0.42
3636
Test::Fatal: 0.013
3737
Try::Tiny: 0.19
38-
version: v0.3.0
38+
version: v1.0.0

docs.tar.gz

5.64 KB
Binary file not shown.

lib/PCAP.pm

+8-6
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ package PCAP;
2323
use strict;
2424
use Const::Fast qw(const);
2525

26-
our $VERSION = '0.3.0';
26+
our $VERSION = '1.0.0';
2727

2828
const my $LICENSE =>
2929
"#################
@@ -33,11 +33,13 @@ const my $LICENSE =>
3333
#################";
3434

3535
const my $DEFAULT_PATH => 'biobambam,samtools,bwa';
36-
const my %UPGRADE_PATH => ( '0.1.0' => 'biobambam,samtools,bwa',
37-
'0.1.1' => 'biobambam,bwa',
38-
'0.1.2' => 'biobambam',
39-
'0.2.0' => 'biobambam',
40-
'0.3.0' => '',
36+
const my %UPGRADE_PATH => ( '0.1.0' => 'biobambam,samtools,bwa',
37+
'0.1.1' => 'biobambam,bwa',
38+
'0.1.2' => 'biobambam',
39+
'0.2.0' => 'biobambam',
40+
'0.2.99' => 'biobambam',
41+
'0.3.0' => 'biobambam',
42+
'1.0.0' => '',
4143
);
4244

4345
sub license {

0 commit comments

Comments
 (0)