diff options
author | Peter Amstutz | 2020-04-13 12:00:36 -0400 |
---|---|---|
committer | Peter Amstutz | 2020-04-13 12:00:36 -0400 |
commit | b893d9d50a9411b318eabe1784df7fa2a2f9c2d6 (patch) | |
tree | c8b6adbc3417b7e9d38f588a68852e8e805ff03c | |
parent | d6218528d1c4497679570b5e7f4feac51d1f9c53 (diff) | |
download | bh20-seq-resource-b893d9d50a9411b318eabe1784df7fa2a2f9c2d6.tar.gz bh20-seq-resource-b893d9d50a9411b318eabe1784df7fa2a2f9c2d6.tar.lz bh20-seq-resource-b893d9d50a9411b318eabe1784df7fa2a2f9c2d6.zip |
Add __init__.py and fix imports
-rw-r--r-- | bh20seqanalyzer/__init__.py | 0 | ||||
-rw-r--r-- | bh20sequploader/__init__.py | 0 | ||||
-rw-r--r-- | bh20sequploader/main.py | 7 |
3 files changed, 2 insertions, 5 deletions
diff --git a/bh20seqanalyzer/__init__.py b/bh20seqanalyzer/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/bh20seqanalyzer/__init__.py diff --git a/bh20sequploader/__init__.py b/bh20sequploader/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/bh20sequploader/__init__.py diff --git a/bh20sequploader/main.py b/bh20sequploader/main.py index a90c2bd..9c2a94f 100644 --- a/bh20sequploader/main.py +++ b/bh20sequploader/main.py @@ -8,11 +8,8 @@ from pathlib import Path import urllib.request import socket import getpass -# please don't use the .qc_metadata notation -# from .qc_metadata import qc_metadata -# from .qc_fasta import qc_fasta -from qc_metadata import qc_metadata -from qc_fasta import qc_fasta +from bh20sequploader.qc_metadata import qc_metadata +from bh20sequploader.qc_fasta import qc_fasta ARVADOS_API_HOST='lugli.arvadosapi.com' ARVADOS_API_TOKEN='2fbebpmbo3rw3x05ueu2i6nx70zhrsb1p22ycu3ry34m4x4462' |