Skip to content

Commit a508189

Browse files
committed
.
1 parent afa5622 commit a508189

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
from setuptools import setup, find_packages
2+
from pathlib import Path
23

3-
with open("README.md", "r", encoding="utf-8") as fh:
4+
readme_path = Path(__file__).resolve().parent / "README.md"
5+
with readme_path.open("r", encoding="utf-8") as fh:
46
long_description = fh.read()
57

68
setup(

virasign/virasign.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6216,7 +6216,7 @@ def process_sample(sample_name, sample_fastq, database_fasta, output_dir, min_id
62166216
confident_names = save_results(
62176217
sample_name, None, None, all_stats, filtered_stats, curated_stats,
62186218
sample_dir, database_fasta, sample_fastq, min_identity, min_mapped_reads,
6219-
coverage_depth_threshold, coverage_breadth_threshold, threads,
6219+
coverage_depth_threshold, coverage_breadth_threshold, min_nogr, threads,
62206220
gzip_fastq=gzip_fastq,
62216221
minimap2_I=minimap2_I,
62226222
blinded_species=blinded_species,

0 commit comments

Comments
 (0)