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
{{ message }}
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.
Still get error for multiple matching projects when explicitly specifying project using -p flag.
In DNAnexus there are the following 3 projects:
003_181221_M02631_0140_000000000-C7LBK
003_181221_M02631_0140_000000000-C7LBK_partial
003_181221_M02631_0140_000000000-C7LBK_partial2
When running script with following command (with project specified using --project flag)
2019-01-02 12:28:33,259 backup_runfolder.UAcaller
ERROR - 3 matching DNAnexus projects were found for pattern: (003_181221_M02631_0140_000000000-C7LBK). Repeat script by giving explicit project to -p/--project flag```
The text was updated successfully, but these errors were encountered:
# Else, search for the exact project name passed to the function
pattern=r'({})'.format(project)
Think this is because the regex doesn't define start and end of pattern, so anything containing the pattern still matches. i.e. change r'({})'.format(project) to r'^({})$'.format(project)
Still get error for multiple matching projects when explicitly specifying project using -p flag.
In DNAnexus there are the following 3 projects:
003_181221_M02631_0140_000000000-C7LBK
003_181221_M02631_0140_000000000-C7LBK_partial
003_181221_M02631_0140_000000000-C7LBK_partial2
When running script with following command (with project specified using
--project
flag)Get:
The text was updated successfully, but these errors were encountered: