Codebase list barrnap / c7a3166
new upstream release Sascha Steinbiss 8 years ago
4 changed file(s) with 14 addition(s) and 8 deletion(s). Raw diff Collapse all Expand all
0 barrnap (0.7+dfsg-1) unstable; urgency=low
1
2 * New upstream release.
3 * Remove Suggests: to non-existent barrnap=data-nonfree package
4
5 -- Sascha Steinbiss <sascha@steinbiss.name> Wed, 29 Jul 2015 18:05:14 +0000
6
07 barrnap (0.5+dfsg-1) unstable; urgency=low
18
29 * Initial release (Closes: #769641)
1111 Package: barrnap
1212 Architecture: all
1313 Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends}, hmmer (>= 3.1)
14 Suggests: barrnap-data-nonfree
1514 Description: rapid ribosomal RNA prediction
1615 Barrnap (BAsic Rapid Ribosomal RNA Predictor) predicts the location of
1716 ribosomal RNA genes in genomes. It supports bacteria (5S,23S,16S), archaea
6969 foreach (@hits) {
7070 chomp;
7171 err("nhmmer failed to run - $_") if m/fail|error|core dump|bus error/i;
72 @@ -102,7 +118,7 @@
72 @@ -103,7 +119,7 @@
7373 # check for incomplete alignments
7474 my $note = '';
7575 my $len = $end-$begin+1;
7878 if ( $len < int($reject * $LENG{$gene}) ) {
7979 msg("Rejecting short $len nt predicted $gene. Adjust via --reject option.");
8080 next HIT;
81 @@ -120,7 +136,7 @@
81 @@ -121,7 +137,7 @@
8282 ];
8383 }
8484
8787 # output a sorted GFF3
8888
8989 sub gff_sort {
90 @@ -168,13 +184,13 @@
90 @@ -169,13 +185,13 @@
9191
9292 sub show_citation {
9393 print STDERR << "EOCITE";
103103 Thank you.
104104
105105 EOCITE
106 @@ -193,7 +209,7 @@
106 @@ -194,7 +210,7 @@
107107 {OPT=>"help", VAR=>\&usage, DESC=>"This help"},
108108 {OPT=>"version", VAR=>\&version, DESC=>"Print version and exit"},
109109 {OPT=>"citation",VAR=>\&show_citation, DESC=>"Print citation for referencing $EXE"},
112112 DESC=>"Kingdom: ".join(' ', values %KINGDOM) },
113113 {OPT=>"quiet!", VAR=>\$quiet, DEFAULT=>0, DESC=>"No screen output"},
114114 {OPT=>"threads=i", VAR=>\$threads, DEFAULT=>8, DESC=>"Number of threads/cores/CPUs to use"},
115 @@ -226,15 +242,15 @@
115 @@ -227,15 +243,15 @@
116116 my $def = defined($_->{DEFAULT}) ? " (default '$_->{DEFAULT}')" : "";
117117 $def = ($def ? ' (default OFF)' : '(default ON)') if $_->{OPT} =~ m/!$/;
118118 my $opt = $_->{OPT};
11 --- a/bin/barrnap
22 +++ b/bin/barrnap
33 @@ -14,9 +14,14 @@
4 my $AUTHOR = 'Torsten Seemann <torsten.seemann@monash.edu>';
5 my $URL = 'http://www.vicbioinformatics.com/';
4 my $AUTHOR = 'Torsten Seemann <torsten.seemann@gmail.com>';
5 my $URL = 'https://github.com/Victorian-Bioinformatics-Consortium/barrnap';
66 my $DBDIR = "$FindBin::RealBin/../db";
77 +if ( ! -e $DBDIR) {
88 + $DBDIR = "/usr/share/barrnap/db";