Skip to content

Commit

Permalink
fix quantification assessment
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewprzh committed Apr 17, 2024
1 parent c56ed7e commit 66ceb6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/github/run_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ def run_quantification(args, config_dict, novel, output_name):

quantification_stats_output = os.path.join(output_folder, output_name + ".quantification.tsv")
qa_command_list = ["python3", os.path.join(isoquant_dir, "misc/quantification_stats.py"),
"-o", quantification_stats_output, "----ref_expr", ref_tpm, "--tpm", out_tpm]
"-o", quantification_stats_output, "--ref_expr", ref_tpm, "--tpm", out_tpm]

if novel:
gffcompare_outdir = os.path.join(output_folder, "gffcompare")
Expand Down Expand Up @@ -411,7 +411,7 @@ def main():
if RT_QUANTIFICATION_KNOWN in run_types:
err_code = run_quantification(args, config_dict, False, "reference")
if RT_QUANTIFICATION_NOVEL in run_types:
err_code = run_quantification(args, config_dict, False, "reference")
err_code = run_quantification(args, config_dict, False, "novel")

if "check_input_files" in config_dict:
files_list = config_dict["check_input_files"].split()
Expand Down

0 comments on commit 66ceb6d

Please sign in to comment.