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

Fix to include metadata when installing with pip/conda #109

Merged
merged 3 commits into from
Aug 23, 2019
Merged
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
2 changes: 1 addition & 1 deletion bio_hansel/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def init_parser():
parser.add_argument('--scheme-name',
help='Custom user-specified SNP substyping scheme name')
parser.add_argument('-M', '--scheme-metadata',
help='Scheme subtype metadata table (CSV or tab-delimited format; must contain "subtype" column)')
help='Scheme subtype metadata table (CSV or TSV format (TSV highly recommended!); must contain "subtype" column)')
parser.add_argument('-p', '--paired-reads',
nargs=2,
metavar=('forward_reads', 'reverse_reads'),
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
keywords='Salmonella enterica Heidelberg Enteritidis SNP kmer subtyping Aho-Corasick',
classifiers=classifiers,
package_dir={program_name: program_name},
package_data={program_name: ['data/*/*.fasta',]},
package_data={program_name: ['data/*/*.fasta', 'data/*/*.tsv',]},
install_requires=[
'numpy>=1.12.1',
'pandas>=0.20.1',
Expand Down