# HG changeset patch # User wolma # Date 1513586309 18000 # Node ID e76e813f615ac42367397b793faabd5a647edc36 # Parent d801b0675eb5ff32dd6e6fa95860c9ce3002475d planemo upload for repository https://github.com/wm75/mimodd_galaxy_wrappers commit 24cc567ad105450d1c554f09a3467eff671d9864 diff -r d801b0675eb5 -r e76e813f615a macros.xml --- a/macros.xml Sat Nov 11 18:18:54 2017 -0500 +++ b/macros.xml Mon Dec 18 03:38:29 2017 -0500 @@ -1,7 +1,7 @@ 0.1.8 0.1.8 - 0.1.8_0 + 0.1.8_1 `__ +- The complete `MiModD User Guide `__ - The `MiModD help forum `__ reachable also via `email `__ @@ -41,6 +41,34 @@ + + not value or (len(value.split('-')) == 3 and all(part.isdigit() and len(part)==expect_len for part, expect_len in zip(value.split('-'), [4,2,2]))) + + + + + + + + + + + + + not value or all(ord(c) < 127 for c in value) + + + + + + + + + + + + + diff -r d801b0675eb5 -r e76e813f615a snap_caller.xml --- a/snap_caller.xml Sat Nov 11 18:18:54 2017 -0500 +++ b/snap_caller.xml Mon Dec 18 03:38:29 2017 -0500 @@ -165,7 +165,9 @@ help="Corresponds to the second value of the SNAP option -s."/> + help="Consider overlapping mate pairs of the given orientation type(s) anomalous and discard them; allowed values: RF, FR, FF, RR; multiple types may be specified as a comma-separated list and ALL can be used as a shortcut for discarding all overlapping mate pairs; leave blank to retain all overlapping pairs."> + not value or all(token.strip(' ') in ['RF', 'FR', 'FF', 'RR', 'ALL'] for token in value.split(',')) + @@ -329,7 +331,9 @@ help="Corresponds to the second value of the SNAP option -s."/> + help="Consider overlapping mate pairs of the given orientation type(s) anomalous and discard them; allowed values: RF, FR, FF, RR; multiple types may be specified as a comma-separated list and ALL can be used as a shortcut for discarding all overlapping mate pairs; leave blank to retain all overlapping pairs."> + not value or all(token.strip(' ') in ['RF', 'FR', 'FF', 'RR', 'ALL'] for token in value.split(',')) +