Skip to content

Commit

Permalink
add sctools to tools/scripts/
Browse files Browse the repository at this point in the history
  • Loading branch information
nikellepetrillo committed Aug 23, 2024
1 parent cd8ff4b commit 27eae4b
Show file tree
Hide file tree
Showing 75 changed files with 15,263 additions and 0 deletions.
19 changes: 19 additions & 0 deletions tools/scripts/sctools/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# flake8: noqa
from . import bam
from . import encodings
from . import barcode
from . import fastq
from . import gtf
from . import stats
from . import reader
from . import metrics
from . import platform
from . import consts
from . import groups
from pkg_resources import get_distribution, DistributionNotFound


try:
__version__ = get_distribution(__name__).version
except DistributionNotFound:
pass
Loading

0 comments on commit 27eae4b

Please sign in to comment.