Skip to content

Commit

Permalink
Merge pull request #72 from artic-network/main_unstable
Browse files Browse the repository at this point in the history
Main unstable
  • Loading branch information
rmcolq authored Sep 24, 2024
2 parents 60bcbd9 + cfe0b22 commit 0f4a158
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions bin/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ def __init__(self, file_name=None):
self.domains = defaultdict(int)
if file_name:
self.load_df(file_name)
self.unclassified = self.entries[0].count
self.classified = self.entries[1].count
self.unclassified = self.entries["0"].count
self.classified = self.entries["1"].count
self.total = self.classified + self.unclassified

def print(self):
Expand Down Expand Up @@ -392,4 +392,4 @@ def check_host(self, host_dict):
sys.stderr.write(
f"ERROR: found {self.entries[host_id].count} reads corresponding to host {self.entries[host_id].name} with taxon_id {host_id}, max allowed is {max_host_count}\n"
)
sys.exit(2)
sys.exit(2)
2 changes: 1 addition & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ manifest {
description = 'Classify metagenomic sequence data from human respiratory infections.'
mainScript = 'main.nf'
nextflowVersion = '>=20.10.0'
version = 'v1.3.0'
version = 'v1.3.1'
}

profiles {
Expand Down

0 comments on commit 0f4a158

Please sign in to comment.