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
The "VALIDATE sample names" command line in the Snakefile allows letters, underscore and numbers from 1 to 9, thus excluding 0-containing file names :
if not re.match(r"^[a-zA-Z][1-9a-zA-Z_]$", name):
I replaced it by the following:
if not re.match(r"^[a-zA-Z][0-9a-zA-Z_]$", name):
And it now works fine.
The text was updated successfully, but these errors were encountered:
Hi Jérôme,
It seems that the Conda version of dekupl-run is still not up to date.
Could the Conda release be updated to the latest version?
Thanks in advance!
Denis
The "VALIDATE sample names" command line in the Snakefile allows letters, underscore and numbers from 1 to 9, thus excluding 0-containing file names :
if not re.match(r"^[a-zA-Z][1-9a-zA-Z_]$", name):
I replaced it by the following:
if not re.match(r"^[a-zA-Z][0-9a-zA-Z_]$", name):
And it now works fine.
The text was updated successfully, but these errors were encountered: