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

Use ncov/ as a standalone directory #921

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion defaults/parameters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ files:
reference: "defaults/reference_seq.gb"
alignment_reference: "defaults/reference_seq.fasta"
annotation: "defaults/annotation.gff"
outgroup: "defaults/outgroup.fasta" # is this arg still used? file doesn't exist in gh repo
ordering: "defaults/color_ordering.tsv"
color_schemes: "defaults/color_schemes.tsv"
auspice_config: "defaults/auspice_config.json"
Expand Down
1 change: 1 addition & 0 deletions scripts/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# placeholder for relative imports
2 changes: 1 addition & 1 deletion scripts/sanitize_metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import sys
from tempfile import NamedTemporaryFile

from utils import extract_tar_file_contents
from .utils import extract_tar_file_contents

# Define all possible geographic scales we could expect in the GISAID location
# field.
Expand Down
2 changes: 1 addition & 1 deletion scripts/sanitize_sequences.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import re
import sys

from utils import stream_tar_file_contents
from .utils import stream_tar_file_contents


class DuplicateSequenceError(ValueError):
Expand Down
Loading