Skip to content

Commit

Permalink
fixed -c with multiple input files.
Browse files Browse the repository at this point in the history
  • Loading branch information
rkimoakbioinformatics committed Oct 22, 2024
1 parent 2fc529b commit 6d856fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion oakvar/lib/base/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,6 +346,8 @@ async def main(self) -> Optional[Dict[str, Any]]:
for run_no in range(len(self.run_name)):
try:
self.start_log(run_no)
if self.logger:
self.logger.info(f"Processing {self.inputs[run_no]}")
await self.process_clean(run_no)
self.connect_admindb_if_needed(run_no)
self.start_time = time()
Expand Down Expand Up @@ -396,7 +398,6 @@ async def main(self) -> Optional[Dict[str, Any]]:
self.clean_up_at_end(run_no)
self.close_logger()
self.shutdown_logging()
break
return self.report_response

async def process_arguments(self, args):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def walk_and_add(d, pkg_files):
walk_and_add("cravat", cravat_files)
setup(
name="oakvar",
version="2.11.17",
version="2.11.18",
description="A genomic variant analysis platform",
long_description=long_description,
long_description_content_type="text/x-rst",
Expand Down

0 comments on commit 6d856fa

Please sign in to comment.