lib5c toolbox tools may be sensitive to quoting in a platform-dependent way

Issue #76 resolved
Thomas Gilgenast created an issue

as an example,

lib5c kr 'trimmed/*.counts' kr/%s.counts

works on linux as expected, but on windows, inside the resolve_parallel() helper, args_dict[key_arg] is 'trimmed/*.counts' (i.e., it includes the quote marks) and therefore glob.glob(args_dict[key_arg]) is an empty list (the quotes block the matching)

this is currently breaking the commandline tutorial under windows on dev

a possible solution is to strip quotes before glob

Comments (1)

  1. Log in to comment