Skip to content

Commit

Permalink
update call to program
Browse files Browse the repository at this point in the history
  • Loading branch information
b97pla committed May 16, 2024
1 parent a497e9a commit 9a8808a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions metadata_service/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ def export_runfolder_metadata(self, runfolder_extract, snpseq_data_extract, outd
f"--outdir {outdir} " \
f"{runfolder_extract} " \
f"{snpseq_data_extract} " \
f"xml"
f"xml tsv"
self.run_process(cmdline)
return [
os.path.join(
outdir,
xmlfile)
for xmlfile in os.listdir(outdir)
if xmlfile.endswith(".xml")
if xmlfile.endswith(".xml") or xmlfile.endswith(".tsv")
]

0 comments on commit 9a8808a

Please sign in to comment.