Skip to content
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

Fix manual entering of flow cells with NextSeq #52

Open
holtgrewe opened this issue Jan 22, 2020 · 0 comments
Open

Fix manual entering of flow cells with NextSeq #52

holtgrewe opened this issue Jan 22, 2020 · 0 comments
Milestone

Comments

@holtgrewe
Copy link
Member

Should be fairly simple to update the regular expression as flow cell vendor IDs are fixed length, then slot length can be fixed to one and the separating undescore can become optional

FLOW_CELL_NAME_RE = (
    r"^(?P<date>\d{6,6})"
    r"_(?P<machine_name>[^_]+)"
    r"_(?P<run_no>\d+)"
    r"_(?P<slot>\w)"
    r"_?(?P<vendor_id>[^_]{9})"
    r"(_(?P<label>.+))?$"
)
@holtgrewe holtgrewe added this to the v0.3.0 milestone Jan 28, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant