Skip to content

Commit

Permalink
fixed function's input pramaters
Browse files Browse the repository at this point in the history
  • Loading branch information
ens-ftricomi committed Oct 6, 2023
1 parent 527f6dc commit 620ef9e
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,11 @@ class InputSchema(argschema.ArgSchema):
default="scallop",
description="Scallop software path",
)
stringtie_bin = argschema.fields.String(
required=False,
default="stringtie",
description="Scallop software path",
)
prlimit_bin = argschema.fields.String(
required=False,
default="prlimit",
Expand All @@ -199,5 +204,5 @@ def main() -> None:
disable_existing_loggers=False,
)
run_scallop(
mod.args["output_dir"], mod.args["scallop_bin"], mod.args["prlimit_bin"], mod.args["memory_limit"]
mod.args["output_dir"], mod.args["scallop_bin"], mod.args["prlimit_bin"], mod.args["stringtie_bin"], mod.args["memory_limit"]
)

0 comments on commit 620ef9e

Please sign in to comment.