[med-svn] r18811 - in trunk/packages/seqprep/trunk/debian: . patches source

Timothy Booth tbooth-guest at moszumanska.debian.org
Fri Feb 20 11:44:25 UTC 2015


Author: tbooth-guest
Date: 2015-02-20 11:44:24 +0000 (Fri, 20 Feb 2015)
New Revision: 18811

Added:
   trunk/packages/seqprep/trunk/debian/changelog
   trunk/packages/seqprep/trunk/debian/compat
   trunk/packages/seqprep/trunk/debian/control
   trunk/packages/seqprep/trunk/debian/copyright
   trunk/packages/seqprep/trunk/debian/docs
   trunk/packages/seqprep/trunk/debian/install
   trunk/packages/seqprep/trunk/debian/manpages
   trunk/packages/seqprep/trunk/debian/patches/
   trunk/packages/seqprep/trunk/debian/patches/fix_unused_variable_errors
   trunk/packages/seqprep/trunk/debian/patches/series
   trunk/packages/seqprep/trunk/debian/rules
   trunk/packages/seqprep/trunk/debian/seqprep.1.ronn
   trunk/packages/seqprep/trunk/debian/source/
   trunk/packages/seqprep/trunk/debian/source/format
   trunk/packages/seqprep/trunk/debian/watch
Log:
Package includes working self-test and is Lintian clean,
unlike my usual first-efforts.


Added: trunk/packages/seqprep/trunk/debian/changelog
===================================================================
--- trunk/packages/seqprep/trunk/debian/changelog	                        (rev 0)
+++ trunk/packages/seqprep/trunk/debian/changelog	2015-02-20 11:44:24 UTC (rev 18811)
@@ -0,0 +1,5 @@
+seqprep (1.1-0biolinux1) trusty; urgency=medium
+
+  * Initial release for Bio-Linux.
+
+ -- Tim Booth <tbooth at ceh.ac.uk>  Thu, 19 Feb 2015 16:49:55 +0000

Added: trunk/packages/seqprep/trunk/debian/compat
===================================================================
--- trunk/packages/seqprep/trunk/debian/compat	                        (rev 0)
+++ trunk/packages/seqprep/trunk/debian/compat	2015-02-20 11:44:24 UTC (rev 18811)
@@ -0,0 +1 @@
+9

Added: trunk/packages/seqprep/trunk/debian/control
===================================================================
--- trunk/packages/seqprep/trunk/debian/control	                        (rev 0)
+++ trunk/packages/seqprep/trunk/debian/control	2015-02-20 11:44:24 UTC (rev 18811)
@@ -0,0 +1,27 @@
+Source: seqprep
+Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
+Uploaders: Tim Booth <tbooth at ceh.ac.uk>
+Section: science
+Priority: optional
+Build-Depends: debhelper (>=9), python, ruby-ronn
+Standards-Version: 3.9.5
+Homepage: https://github.com/jstjohn/SeqPrep
+
+Package: seqprep
+Architecture: amd64
+Section: science
+Priority: optional
+Depends: ${misc:Depends},
+         ${shlibs:Depends}
+Description: tool for stripping adaptors and/or merging paired reads with overlap
+ SeqPrep is a program to merge paired end Illumina reads that are overlapping
+ into a single longer read. It may also just be used for its adapter trimming
+ feature without doing any paired end overlap. When an adapter sequence is
+ present, that means that the two reads must overlap (in most cases) so they
+ are forcefully merged. When reads do not have adapter sequence they must be
+ treated with care when doing the merging, so a much more specific approach is
+ taken. The default parameters were chosen with specificity in mind, so that
+ they could be ran on libraries where very few reads are expected to overlap.
+ It is always safest though to save the overlapping procedure for libraries
+ where you have some prior knowledge that a significant portion of the reads
+ will have some overlap.

Added: trunk/packages/seqprep/trunk/debian/copyright
===================================================================
--- trunk/packages/seqprep/trunk/debian/copyright	                        (rev 0)
+++ trunk/packages/seqprep/trunk/debian/copyright	2015-02-20 11:44:24 UTC (rev 18811)
@@ -0,0 +1,25 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: SeqPrep
+Upstream-Contact: jstjohn at soe.ucsc.edu
+Source: https://github.com/jstjohn/SeqPrep
+
+Files: *
+Copyright: (C) 2011 by John St. John
+License:
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.

Added: trunk/packages/seqprep/trunk/debian/docs
===================================================================
--- trunk/packages/seqprep/trunk/debian/docs	                        (rev 0)
+++ trunk/packages/seqprep/trunk/debian/docs	2015-02-20 11:44:24 UTC (rev 18811)
@@ -0,0 +1 @@
+README.md

Added: trunk/packages/seqprep/trunk/debian/install
===================================================================
--- trunk/packages/seqprep/trunk/debian/install	                        (rev 0)
+++ trunk/packages/seqprep/trunk/debian/install	2015-02-20 11:44:24 UTC (rev 18811)
@@ -0,0 +1 @@
+seqprep	/usr/bin

Added: trunk/packages/seqprep/trunk/debian/manpages
===================================================================
--- trunk/packages/seqprep/trunk/debian/manpages	                        (rev 0)
+++ trunk/packages/seqprep/trunk/debian/manpages	2015-02-20 11:44:24 UTC (rev 18811)
@@ -0,0 +1 @@
+debian/*.1

Added: trunk/packages/seqprep/trunk/debian/patches/fix_unused_variable_errors
===================================================================
--- trunk/packages/seqprep/trunk/debian/patches/fix_unused_variable_errors	                        (rev 0)
+++ trunk/packages/seqprep/trunk/debian/patches/fix_unused_variable_errors	2015-02-20 11:44:24 UTC (rev 18811)
@@ -0,0 +1,64 @@
+--- a/SeqPrep.c
++++ b/SeqPrep.c
+@@ -67,7 +67,7 @@
+   fprintf(stderr, "\t-X <read alignment maximum fraction gap cutoff; default = %f>\n", DEF_READ_GAP_FRAC_CUTOFF );
+   fprintf(stderr, "Optional Arguments for Merging:\n" );
+   fprintf(stderr, "\t-y <maximum quality score in output ((phred 33) default = '%c' )>\n", maximum_quality );
+-  fprintf(stderr, "\t-g <print overhang when adapters are present and stripped (use this if reads are different length)>\n");
++  fprintf(stderr, "\t-g <print overhang when adapters are present and stripped (use this if reads are different length)> - UNIMPLEMENTED\n");
+   fprintf(stderr, "\t-s <perform merging and output the merged reads to this file>\n" );
+   fprintf(stderr, "\t-E <write pretty alignments to this file for visual Examination>\n" );
+   fprintf(stderr, "\t-x <max number of pretty alignments to write (if -E provided); default = %d>\n", DEF_MAX_PRETTY_PRINT );
+@@ -133,7 +133,7 @@
+   char reverse_discard_fn[MAX_FN_LEN];
+   char merged_out_fn[MAX_FN_LEN];
+   bool do_read_merging = false;
+-  bool print_overhang = false;
++//  bool print_overhang = false;
+   bool write_discard=false;
+   char forward_primer[MAX_SEQ_LEN+1];
+   strcpy(forward_primer, DEF_FORWARD_PRIMER); //set default
+@@ -270,7 +270,8 @@
+       maximum_quality = optarg[0];
+       break;
+     case 'g' :
+-      print_overhang = true;
++      //print_overhang is never used!
++      //print_overhang = true;
+       break;
+     case 's' :
+       do_read_merging = true;
+--- a/stdaln.c
++++ b/stdaln.c
+@@ -545,13 +545,12 @@
+ 	int start, end, max_score;
+ 	int thres, *suba, *ss;
+ 
+-	int gap_open, gap_ext, b;
++	int gap_open, gap_ext;
+ 	int *score_matrix, N_MATRIX_ROW;
+ 
+ 	/* initialize some align-related parameters. just for compatibility */
+ 	gap_open = ap->gap_open;
+ 	gap_ext = ap->gap_ext;
+-	b = ap->band_width;
+ 	score_matrix = ap->matrix;
+ 	N_MATRIX_ROW = ap->row;
+ 	thres = _thres > 0? _thres : -_thres;
+@@ -865,7 +864,7 @@
+ int aln_extend_core(unsigned char *seq1, int len1, unsigned char *seq2, int len2, const AlnParam *ap,
+ 					path_t *path, int *path_len, int G0, uint8_t *_mem)
+ {
+-	int q, r, qr, tmp_len;
++	int q, r, qr;
+ 	int32_t **s_array, *score_array;
+ 	int is_overflow, of_base;
+ 	uint32_t *eh;
+@@ -892,7 +891,6 @@
+ 		s_array[i] = (int32_t*)_p, _p += 4 * len1;
+ 	/* initialization */
+ 	aln_init_score_array(seq1, len1, N_MATRIX_ROW, score_matrix, s_array);
+-	tmp_len = len1 + 1;
+ 	start = 1; end = 2;
+ 	end_i = end_j = 0;
+ 	score = 0;

Added: trunk/packages/seqprep/trunk/debian/patches/series
===================================================================
--- trunk/packages/seqprep/trunk/debian/patches/series	                        (rev 0)
+++ trunk/packages/seqprep/trunk/debian/patches/series	2015-02-20 11:44:24 UTC (rev 18811)
@@ -0,0 +1 @@
+fix_unused_variable_errors

Added: trunk/packages/seqprep/trunk/debian/rules
===================================================================
--- trunk/packages/seqprep/trunk/debian/rules	                        (rev 0)
+++ trunk/packages/seqprep/trunk/debian/rules	2015-02-20 11:44:24 UTC (rev 18811)
@@ -0,0 +1,25 @@
+#!/usr/bin/make -f
+#export DH_VERBOSE=1
+
+%:
+	dh $@
+
+override_dh_auto_build:
+	dh_auto_build
+	cp SeqPrep seqprep
+	ronn -r --manual=seqprep --organization='Cancer Therapeutics Innovation Group' debian/seqprep.1.ronn
+
+override_dh_clean:
+	dh_clean
+	rm -f seqprep
+	rm -rf Test/info Test/out
+	rm -f debian/*.1
+
+override_dh_install:
+	dh_install
+
+override_dh_auto_test:
+	# This checks that the tests run and produce byte-identical results.
+	cd Test && mkdir -p out info && \
+	    bash -xc 'gzcat(){ zcat "$$@" ; } ; . RUNTEST.sh'
+	[ `cat Test/info/pe_*.txt | md5sum | cut -b -10` = 8bc8e0787e ]


Property changes on: trunk/packages/seqprep/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: trunk/packages/seqprep/trunk/debian/seqprep.1.ronn
===================================================================
--- trunk/packages/seqprep/trunk/debian/seqprep.1.ronn	                        (rev 0)
+++ trunk/packages/seqprep/trunk/debian/seqprep.1.ronn	2015-02-20 11:44:24 UTC (rev 18811)
@@ -0,0 +1,174 @@
+seqprep(1) -- merge paired end Illumina reads
+===========
+
+SeqPrep is a program to merge paired end Illumina reads that are overlapping into
+a single longer read. It may also just be used for its adapter trimming feature
+without doing any paired end overlap.
+
+## USAGE
+
+ `seqprep` <required args> [options]
+
+## Required Arguments:
+
+    -f <first read input fastq filename>
+    -r <second read input fastq filename>
+    -1 <first read output fastq filename>
+    -2 <second read output fastq filename>
+
+## General Arguments (Optional):
+
+    -3 <first read discarded fastq filename>
+    -4 <second read discarded fastq filename>
+    -h Display this help message and exit (also works with no args)
+    -6 Input sequence is in phred+64 rather than phred+33 format, the output will still be phred+33
+    -q <Quality score cutoff for mismatches to be counted in overlap; default = 13>
+    -L <Minimum length of a trimmed or merged read to print it; default = 30>
+
+## Arguments for Adapter/Primer Trimming (Optional):
+
+    -A <forward read primer/adapter sequence to trim as it would appear at the end of a read (recommend about 20bp of this)
+	     (should validate by grepping a file); default (genomic non-multiplexed adapter1) = AGATCGGAAGAGCGGTTCAG>
+    -B <reverse read primer/adapter sequence to trim as it would appear at the end of a read (recommend about 20bp of this)
+	     (should validate by grepping a file); default (genomic non-multiplexed adapter2) = AGATCGGAAGAGCGTCGTGT>
+    -O <minimum overall base pair overlap with adapter sequence to trim; default = 10>
+    -M <maximum fraction of good quality mismatching bases for primer/adapter overlap; default = 0.020000>
+    -N <minimum fraction of matching bases for primer/adapter overlap; default = 0.870000>
+    -b <adapter alignment band-width; default = 50>
+    -Q <adapter alignment gap-open; default = 8>
+    -t <adapter alignment gap-extension; default = 2>
+    -e <adapter alignment gap-end; default = 2>
+    -Z <adapter alignment minimum local alignment score cutoff [roughly (2*num_hits) - (num_gaps*gap_open) - (num_gaps*gap_close) - (gap_len*gap_extend) - (2*num_mismatches)]; default = 26>
+    -w <read alignment band-width; default = 50>
+    -W <read alignment gap-open; default = 26>
+    -p <read alignment gap-extension; default = 9>
+    -P <read alignment gap-end; default = 5>
+    -X <read alignment maximum fraction gap cutoff; default = 0.125000>
+
+## Optional Arguments for Merging:
+
+    -y <maximum quality score in output ((phred 33) default = ']' )>
+    -g <print overhang when adapters are present and stripped (use this if reads are different length)> - UNIMPLEMENTED
+    -s <perform merging and output the merged reads to this file>
+    -E <write pretty alignments to this file for visual Examination>
+    -x <max number of pretty alignments to write (if -E provided); default = 10000>
+    -o <minimum overall base pair overlap to merge two reads; default = 15>
+    -m <maximum fraction of good quality mismatching bases to overlap reads; default = 0.020000>
+    -n <minimum fraction of matching bases to overlap reads; default = 0.900000>
+
+`NOTE 1`: The output is always gziped compressed.
+
+`NOTE 2`: If the quality strings in the output contain characters less than asciii
+33 on an ascii table (they look like lines from a binary file), try running again
+with or without the -6 option.
+
+## SETUP
+
+When an adapter sequence is present, that means that the two reads must overlap
+(in most cases) so they are forcefully merged. When reads do not have adapter
+sequence they must be treated with care when doing the merging, so a much more
+specific approach is taken. The default parameters were chosen with specificity
+in mind, so that they could be ran on libraries where very few reads are
+expected to overlap. It is always safest though to save the overlapping
+procedure for libraries where you have some prior knowledge that a significant
+portion of the reads will have some overlap.
+
+Before running SeqPrep make sure to check that the program's defaults are indeed
+the adapters you are looking for. Try copying the default forward adapter from
+this file and grep it against your reads doing a word count, also try the same
+with the reverse adapter with grep. You should see some hits. You can also try
+using (and validating with grep) `-A GATCGGAAGAGCACACG -B AGATCGGAAGAGCGTCGT` as
+parameters. To find a list of Illumina adapter sequences you should write to
+Illumina tech support TechSupport at illumina.com (they do not like people to share
+the list of sequences outside of their institution).
+
+Choose about 20bp of an adapter sequence where:
+
+1. You see the most hits with grep.
+1. When you run a command like
+`zcat Lane2_0d_2.fastq.gz | head -n 1000000 |grep "INSERT ADAPTER HERE" | head`
+you see the adapter sequence show up at the beginning of a few reads. Also the -A and -B
+arguments should be as they show up in your data, SeqPrep searches directly for
+these sequences without doing reverse complementing
+1. Check the forward and
+reverse and make sure that you have roughly the same number of hits via a
+command to count hits like:
+ `zcat Lane2_0d_2.fastq.gz | head -n 1000000 |grep "INSERT ADAPTER HERE" | wc -l`
+As an additional precaution, the program checks
+for good read overlap once the adapters are trimmed. If the adapter is trimmed
+and the reads do not have a reasonable adapter overlap (you can modify this
+setting with -X) then the reads aren't printed or merged.
+
+See Test/README.md for some information on testing out other parameters.
+Test/SimTest has some particularly cool test data which you can use to check out
+sensitivity and specificity of adapter trimming using different parameters. The
+results of the test are displayed in results.html which uses the google charts
+API so that the points are interactive and you can easily determine which
+settings made which points.
+
+LOW COMPLEXITY ALIGNMENTS
+
+My current strategy to deal with ambiguous alignments to low complexity regions is as follows:
+
+I have some minimum requirements for an overlap to be accepted
+After the first one is found (ie the one with the maximal overlap between the two sequences), if low complexity filtering is enabled, I keep searching
+if a second viable hit is found, I give up and say that it is not a good idea to merge the two reads.
+I check for ambiguous alignments in read overlapping, but not in adapter trimming where the most conservative thing to do is strip the most aggressively aligned adapter (The closest to the beginning of the read).
+
+To accept an alignment I allow some fraction of mismatches (currently the floor of 0.06 of the alignment length for adapter and 0.02 of the alignment length for two reads). That means that in most cases for overlapping two reads I don't allow any mismatches between adjacent reads, but if there is a 50bp potential overlap with 1 mismatch over q20 for example, I allow it. Anything below 50 needs to be perfect other than with low quality bases.
+
+Since we ignore poor quality bases, we could have the case where a single real match followed by a long string of poor quality bases to the end of the read would result in a called overlap. That seemed like a bad idea. To get around that I require that at least some fraction of the overlapping length be matches. Right now I have that parameter set at 0.7 for adapter trimming and 0.75 for read merging, so for a case where only the last 10 bases overlap, at least 7 of those must be matches.
+
+Since doing that many floating point multiplications seems like a bad idea, I just have a table that pre-calculates all of those min matches and max mismatch numbers for every overlap length up to the maximum allowed read length.
+
+Finally I have a parameter you can set which specifies a minimum resulting read length after adapter trimming and/or merging so that ultra short trimmed reads aren't output.
+
+Following are results from hand testing the three main merge cases. Now to generate similar output automatically just supply the -E readable_alignment.txt.gz argument to the program (the output is gzip compressed into the file name specified).
+
+## Sequence Merge No Adapter Present:
+
+    QUER: NCCTGCTACTACCACCCGTTCCGTGCCTGGAGCCTGCATGTTGGGCAGATACGTGCTGCCACAGCCTGTCTCTGCTGGTGCCTGGGCCTC
+					    ||  |||||||||||| || |  |||||||||||||||||||||||||||||||||
+    SUBJ:                                   TGTGTGTTGGGCAGATGCGGGGGGCCACAGCCTGTCTCTGCTGGTGCCTGGGCCTCTCCTGTTCCTTGCCCACGTCTCCGTCTCCTGTTG
+    RESU: NCCTGCTACTACCACCCGTTCCGTGCCTGGAGCCTGCATGTTGGGCAGATACGTGCTGCCACAGCCTGTCTCTGCTGGTGCCTGGGCCTCTCCTGTTCCTTGCCCACGTCTCCGTCTCCTGTTG
+    Quality Merge:
+    QUER: !223387787@@@CCC22C@@@@@@@@@@@@@@@@@@@@@@@@@@@@?@@89887:::::.2125@@:@@:::::@@@@@<<::8@@@@@
+    SUBJ:                                   !!!!!!!!!!!!!!!!!!!!!!!!!!!@@@8DEGE at EDDBB2<BBE at EHBFE@EE>D8 at DBE>BFIDH at IIEEIIBEIEIIGBIIGIFII
+    RESU: !223387787@@@CCC22C@@@@@@@@@@@@@@@@@@@@@@@@@@@@?@@89887:::::.QPQLSSSSSSSSSSQSSSSSSSSSSSSSSD8 at DBE>BFIDH at IIEEIIBEIEIIGBIIGIFII
+
+## Sequence Merge Adapter Present, Easy Peezy Mode (same lengths):
+
+    SUBJ: NGATATGATTCCCAATCTAAGCAAACTGTCATGGAAAC
+	   |||||||||||||||||||||||||||||||||||||
+    QUER: GGATATGATTCCCAATCTAAGCAAACTGTCATGGAAAC
+    RESU: GGATATGATTCCCAATCTAAGCAAACTGTCATGGAAAC
+    Quality Merge:
+    SUBJ: !.-/.53444@@@@@@@@@@@@@@@@@@@@@@@@@@@@
+    QUER: IHGIIIDIIHGEHIGHIFHIFIIIIHIIIIIIIIIHII
+    RESU: ISSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS
+
+
+## Sequence merge Adapter but lengths differ:
+
+    SUBJ: AATTGATGGGTGCCCACCCACGGGCCAGACAAAATCATCTGGCAAGCTGGATGCAGCCTACAAGCTGTAAGATTGGA
+	  |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
+    QUER: AATTGATGGGTGCCCACCCACGGGCCAGACAAAATCATCTGGCAAGCTGGATGCAGCCTACAAGCTGTA
+    RESU: AATTGATGGGTGCCCACCCACGGGCCAGACAAAATCATCTGGCAAGCTGGATGCAGCCTACAAGCTGTAAGATTGGA
+    Quality Merge:
+    SUBJ: =DEC??DDBD?4B=BEE@@@GB>GEE:DE8=2::6GDGBGEGDD<=;A?=AGGGG=5.=<BD?B?DDB>B4725:E>
+    QUER: GDDBBFBGGFBHFIEDGGGBDGGG<GGDDG at IIIEIHDIHGIIIDDGDGDFDIFIHGIDEGGGDIIIGI
+    RESU: SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSB4725:E>
+
+If interested there is a website where I post my tests of different parameters for SeqPrep on simulated data. There are also a few comparison stats of different programs to trim adapters. The website can be accessed here: `http://hgwdev.cse.ucsc.edu/~jstjohn/seqprep/`
+where the pages are named result(date).html. The latest ones (as of when I have gotten around to edit this) can be found here:
+
+`http://hgwdev.cse.ucsc.edu/~jstjohn/seqprep/results2011-09-15.html`
+
+Note that although my program is more sensitive and specific than fastq-clipper, I optomized my default parameters based on this test. Results on real data may be different, although I believe my method takes advantage of a more realistic adapter model than other software does. For example, even though my program requires 10bp of adapter to be present at the end of a read to trim it off (by default) there is a backup adapter trimming function that trimms based on strong and unambiguous read overlap. Because of this my program can trim the adapter even if it is only present in the last few bases of the read.
+
+Also note that fastq-mcf appears to do a little better at sensitivity (0.992 vs 0.985) at a very large cost to specificity (0.497 vs 0.994).
+
+## AUTHOR
+
+* All content by John St. John
+* Manpage edited for Debian by Tim Booth

Added: trunk/packages/seqprep/trunk/debian/source/format
===================================================================
--- trunk/packages/seqprep/trunk/debian/source/format	                        (rev 0)
+++ trunk/packages/seqprep/trunk/debian/source/format	2015-02-20 11:44:24 UTC (rev 18811)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: trunk/packages/seqprep/trunk/debian/watch
===================================================================
--- trunk/packages/seqprep/trunk/debian/watch	                        (rev 0)
+++ trunk/packages/seqprep/trunk/debian/watch	2015-02-20 11:44:24 UTC (rev 18811)
@@ -0,0 +1,3 @@
+version=3
+
+https://github.com/jstjohn/DeqPrep/releases .*/archive/v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz)




More information about the debian-med-commit mailing list