commit/galaxy-central: jgoecks: Add semicolon to the list of delimiters in the 'Convert delimiters to whitespace tool'.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/ecda22758c81/ Changeset: ecda22758c81 User: jgoecks Date: 2013-06-21 17:59:13 Summary: Add semicolon to the list of delimiters in the 'Convert delimiters to whitespace tool'. Affected #: 2 files diff -r 01dd0d00de0112b53c05eac5fe3ffbb6ce1526b1 -r ecda22758c813923fee40c2a0b07c84427d24bd9 tools/filters/convert_characters.py --- a/tools/filters/convert_characters.py +++ b/tools/filters/convert_characters.py @@ -24,7 +24,17 @@ except: stop_err("Output file cannot be opened for writing.") - char_dict = {'T':'\t','s':'\s','Dt':'\.','C':',','D':'-','U':'_','P':'\|','Co':':'} + char_dict = { + 'T': '\t', + 's': '\s', + 'Dt': '\.', + 'C': ',', + 'D': '-', + 'U': '_', + 'P': '\|', + 'Co': ':', + 'Sc': ';' + } from_ch = char_dict[from_char] + '+' #making an RE to match 1 or more occurences. skipped = 0 diff -r 01dd0d00de0112b53c05eac5fe3ffbb6ce1526b1 -r ecda22758c813923fee40c2a0b07c84427d24bd9 tools/filters/convert_characters.xml --- a/tools/filters/convert_characters.xml +++ b/tools/filters/convert_characters.xml @@ -12,6 +12,7 @@ <option value="U">Underscores</option><option value="P">Pipes</option><option value="Co">Colons</option> + <option value="Sc">Semicolons</option></param><param format="txt" name="input" type="data" label="in Dataset"/></inputs> 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.
participants (1)
-
commits-noreply@bitbucket.org