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

Add NovaSeq 6000 as recognised sequencing platform #205

Merged
merged 2 commits into from Jul 14, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion bcftbx/IlluminaData.py
@@ -1,5 +1,5 @@
# IlluminaData.py: module for handling data about Illumina sequencer runs
# Copyright (C) University of Manchester 2012-2021 Peter Briggs
# Copyright (C) University of Manchester 2012-2022 Peter Briggs
#
########################################################################
#
Expand Down Expand Up @@ -40,6 +40,7 @@
'hiseq4000',
'miseq',
'nextseq',
'novaseq6000',
'miniseq',
'iseq')

Expand Down
3 changes: 2 additions & 1 deletion bcftbx/platforms.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
#
# platforms.py: utilities and data to identify sequencer platforms
# Copyright (C) University of Manchester 2013-2018 Peter Briggs
# Copyright (C) University of Manchester 2013-2022 Peter Briggs
#
########################################################################
#
Expand All @@ -26,6 +26,7 @@
PLATFORMS['miseq'] = "Illumina MISeq"
PLATFORMS['miniseq'] = "MiniSeq"
PLATFORMS['nextseq'] = "Illumina NextSeq"
PLATFORMS['novaseq6000'] = "NovaSeq 6000"
PLATFORMS['iseq'] = "Illumina iSeq"
PLATFORMS['illumina'] = "Unknown/Illumina"
PLATFORMS['other'] = "Unknown/external"
Expand Down