Skip to content

Commit

Permalink
Merge pull request #220 from fls-bioinformatics-core/bcftbx-refactor-…
Browse files Browse the repository at this point in the history
…platforms

bcftbx: refactor 'platforms' module into subpackage
  • Loading branch information
pjbriggs authored Dec 5, 2024
2 parents c8de134 + d22f5e5 commit 5b07122
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 4 additions & 6 deletions bcftbx/platforms.py → bcftbx/platforms/__init__.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
#!/usr/bin/env python
#
# platforms.py: utilities and data to identify sequencer platforms
# Copyright (C) University of Manchester 2013-2022 Peter Briggs
# Copyright (C) University of Manchester 2013-2024 Peter Briggs
#
########################################################################
#
# platforms.py
# platforms
#
#########################################################################

"""platforms.py
"""
Utilities and data to identify NGS sequencer platforms
"""

# Dictionary of sequencer platforms
from .utils import OrderedDictionary
from ..utils import OrderedDictionary
PLATFORMS = OrderedDictionary()
PLATFORMS['solid4'] = "SOLiD 4"
PLATFORMS['solid5500'] = "SOLiD 5500"
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
maintainer_email = '[email protected]',
packages = ['bcftbx',
'bcftbx.cli',
'bcftbx.platforms',
'bcftbx.qc'],
license = 'AFL-3',
# Pull in dependencies
Expand Down

0 comments on commit 5b07122

Please sign in to comment.