-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot parse strain name when '.' in file path #99
Comments
Hi @Takadonet, I took a closer look at the patch and I'd asses (without looking at the entirety of the code) it really does only fix shortcomings without other behavioral changes. Hence I'd be fine with including it in either version for bioconda/bioconda-recipes#6957. args.output + '__' + sample_name + '.' + db_name + '.pileup' at https://github.com/katholt/srst2/blob/v0.2.0/scripts/srst2.py#L1381-L1382 and gets split with pileup_file.split(".")[1].split("__")[1] where the patch from #100 applies, at https://github.com/katholt/srst2/blob/v0.2.0/scripts/srst2.py#L453. |
The output always contain a |
Ah, ok, I was only looking at the call at |
So the following line keeps failing when one or more '.' are found on the path to pileup file.
Example failing file path is /Storage/galaxy-17.05/working/dapE_11.out__Strain1.dataset_357596.pileup
The text was updated successfully, but these errors were encountered: