Skip to content

Commit

Permalink
quick update
Browse files Browse the repository at this point in the history
  • Loading branch information
y9c committed Apr 22, 2024
1 parent 6b6a63d commit 2b9fef9
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 21 deletions.
41 changes: 21 additions & 20 deletions cutseq/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -597,14 +597,6 @@ def main():
nargs="+",
help="Output file path for keep trimmed data.",
)

parser.add_argument(
"-q",
"--min-quality",
type=int,
default=20,
help="Minimum quality of the read tails in the reads to keep.",
)
# discard short reads
parser.add_argument(
"-s",
Expand All @@ -613,6 +605,27 @@ def main():
nargs="+",
help="Output file path for discarded too short data.",
)
# discard inline barcode untrimmed reads
parser.add_argument(
"-u",
"--untrimmed-file",
type=str,
nargs="+",
help="Output file path for discarded reads without inline barcode.",
)
parser.add_argument(
"--json-file",
type=str,
help="Output json file for statistics.",
)

parser.add_argument(
"-q",
"--min-quality",
type=int,
default=20,
help="Minimum quality of the read tails in the reads to keep.",
)
parser.add_argument(
"-m",
"--min-length",
Expand All @@ -632,13 +645,6 @@ def main():
action="store_true",
help="Output discarded reads without inline barcode.",
)
parser.add_argument(
"-u",
"--untrimmed-file",
type=str,
nargs="+",
help="Output file path for discarded reads without inline barcode.",
)

parser.add_argument("--trim-polyA", action="store_true", help="Trim polyA tail.")

Expand All @@ -648,11 +654,6 @@ def main():
help="Reverse complement the reads.",
)

parser.add_argument(
"--json-file",
type=str,
help="Output json file for statistics.",
)
parser.add_argument(
"-t",
"--threads",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cutseq"
version = "0.0.13"
version = "0.0.14"
description = "Automatically cut adapter / barcode / UMI from NGS data"
authors = ["Ye Chang <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 2b9fef9

Please sign in to comment.