# HG changeset patch # User peterjc # Date 1494436681 14400 # Node ID 2d4537dbf0bcbcee2deb5770753f1b708e600516 # Parent fb1313d79396148034eebfbf20ef70fa23130cb5 v0.2.6 Depend on Biopython 1.67 from Tool Shed or (Bio)conda diff -r fb1313d79396 -r 2d4537dbf0bc tools/seq_filter_by_id/README.rst --- a/tools/seq_filter_by_id/README.rst Fri Nov 04 08:11:08 2016 -0400 +++ b/tools/seq_filter_by_id/README.rst Wed May 10 13:18:01 2017 -0400 @@ -1,7 +1,7 @@ Galaxy tool to filter FASTA, FASTQ or SFF sequences by ID ========================================================= -This tool is copyright 2010-2015 by Peter Cock, The James Hutton Institute +This tool is copyright 2010-2017 by Peter Cock, The James Hutton Institute (formerly SCRI, Scottish Crop Research Institute), UK. All rights reserved. See the licence text below. @@ -91,6 +91,7 @@ (internal change only). v0.2.4 - Corrected error message wording. v0.2.5 - Ignore empty names, common in R output (Gildas Le Corguillé). +v0.2.6 - Depends on Biopython 1.67 via legacy Tool Shed package or bioconda. ======= ====================================================================== diff -r fb1313d79396 -r 2d4537dbf0bc tools/seq_filter_by_id/seq_filter_by_id.py --- a/tools/seq_filter_by_id/seq_filter_by_id.py Fri Nov 04 08:11:08 2016 -0400 +++ b/tools/seq_filter_by_id/seq_filter_by_id.py Wed May 10 13:18:01 2017 -0400 @@ -27,9 +27,11 @@ Use -v or --version to get the version, -h or --help for help. """ + import os +import re import sys -import re + from optparse import OptionParser # Parse Command Line @@ -144,6 +146,7 @@ "using first word only. e.g.:\n%s\n" % name return parts[0] + if drop_suffices: def clean_name(name): """Remove suffix.""" diff -r fb1313d79396 -r 2d4537dbf0bc tools/seq_filter_by_id/seq_filter_by_id.xml --- a/tools/seq_filter_by_id/seq_filter_by_id.xml Fri Nov 04 08:11:08 2016 -0400 +++ b/tools/seq_filter_by_id/seq_filter_by_id.xml Wed May 10 13:18:01 2017 -0400 @@ -1,7 +1,7 @@ - + from a tabular file - biopython + biopython diff -r fb1313d79396 -r 2d4537dbf0bc tools/seq_filter_by_id/tool_dependencies.xml --- a/tools/seq_filter_by_id/tool_dependencies.xml Fri Nov 04 08:11:08 2016 -0400 +++ b/tools/seq_filter_by_id/tool_dependencies.xml Wed May 10 13:18:01 2017 -0400 @@ -1,6 +1,6 @@ - - + +