You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
right now, mergeSTR splits the file list by itself. however, argparse can take a list of items (including what is expanded out from a glob, like *.vcf.gz in the following way:
Then, this will pre-split VCFs by whitespace and let someone run something like
mergeSTR --vcfs *.vcf.gz --out something
You could keep backwards compatibility even with comma-separated arguments by doing something like this, although it's a bit janky and prevents filenames with commas in them (which mergeSTR already does)
right now, mergeSTR splits the file list by itself. however, argparse can take a list of items (including what is expanded out from a glob, like
*.vcf.gz
in the following way:Then, this will pre-split VCFs by whitespace and let someone run something like
mergeSTR --vcfs *.vcf.gz --out something
You could keep backwards compatibility even with comma-separated arguments by doing something like this, although it's a bit janky and prevents filenames with commas in them (which mergeSTR already does)
The text was updated successfully, but these errors were encountered: