1 new changeset in galaxy-central:
http://bitbucket.org/galaxy/galaxy-central/changeset/88a118487292/
changeset: r5127:88a118487292
user: kanwei
date: 2011-02-25 01:07:41
summary: Only lowercase columns if starting with "c".. fixes issue where
"None" was lowercased to "none". Fixes subtract_query tests
affected #: 1 file (28 bytes)
--- a/lib/galaxy/tools/parameters/basic.py Thu Feb 24 18:21:46 2011 -0500
+++ b/lib/galaxy/tools/parameters/basic.py Thu Feb 24 19:07:41 2011 -0500
@@ -845,9 +845,8 @@
removes the 'c' when entered into a workflow.
"""
def _strip_c( column ):
- column = column.strip().lower()
if column.startswith( 'c' ):
- column = column[1:]
+ column = column.strip().lower()[1:]
return column
if self.multiple:
#split on newline and ,
Repository URL:
https://bitbucket.org/galaxy/galaxy-central/
--
This is a commit notification from
bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.