Skip to content

Commit

Permalink
Forgot to include the map file in the MANIFEST file
Browse files Browse the repository at this point in the history
  • Loading branch information
xapple committed Feb 19, 2025
1 parent 87c14a0 commit 519ee5b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,8 @@ include crest4/tests/with_otu_table/otu_table_good.tsv
include crest4/tests/custom_database/custom/custom.fasta
include crest4/tests/custom_database/custom/custom.map
include crest4/tests/custom_database/custom/custom.names
include crest4/tests/custom_database/custom/custom.tre
include crest4/tests/custom_database/custom/custom.tre
include crest4/tests/custom_database/other_database/custom.fasta
include crest4/tests/custom_database/other_database/custom.map
include crest4/tests/custom_database/other_database/custom.names
include crest4/tests/custom_database/other_database/custom.tre
2 changes: 1 addition & 1 deletion crest4/databases.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def acc_to_node(self):
if not path.exists:
msg = ("The file '%s' does not exist. "
"Contents of the parent directory:\n%s")
contents = '\n- '.join(path.directory.flat_files)
contents = '- ' + '\n- '.join(path.directory.flat_files)
raise FileNotFoundError(msg % (path, contents))
# Define how to process each line #
def parse_lines(lines):
Expand Down

0 comments on commit 519ee5b

Please sign in to comment.