Skip to content

Commit

Permalink
Ref velocity (#5)
Browse files Browse the repository at this point in the history
* ref support for RNA velocity

* fix tests

* update cli help
  • Loading branch information
Lioscro authored Oct 20, 2019
1 parent 80f5d28 commit 1d9207a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions kb_python/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,16 @@ def setup_ref_args(parser, parent):
'required arguments for --velocity'
)
required_velocity.add_argument(
'-c', help='', type=str, required='--velocity' in sys.argv
'-c',
help='Path to generate cDNA transcripts to be captured',
type=str,
required='--velocity' in sys.argv
)
required_velocity.add_argument(
'-n', help='', type=str, required='--velocity' in sys.argv
'-n',
help='Path to generate intron transcripts to be captured',
type=str,
required='--velocity' in sys.argv
)

parser_ref.add_argument(
Expand Down

0 comments on commit 1d9207a

Please sign in to comment.