Skip to content

Commit

Permalink
Add file to command line parser
Browse files Browse the repository at this point in the history
  • Loading branch information
mtomko committed Feb 9, 2024
1 parent 66e28a5 commit 3124a44
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,11 @@ object PoolQConfig {
val _ =
opt[Path]("quality").valueName("<file>").action((f, c) => c.copy(output = c.output.copy(qualityFile = f)))

val _ =
opt[Path]("condition-barcode-counts-summary")
.valueName("<file>")
.action((f, c) => c.copy(output = c.output.copy(conditionBarcodeCountsSummaryFile = f)))

val _ = opt[Path]("counts").valueName("<file>").action((f, c) => c.copy(output = c.output.copy(countsFile = f)))

val _ = opt[Path]("normalized-counts").valueName("<file>").action { (f, c) =>
Expand Down

0 comments on commit 3124a44

Please sign in to comment.