-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
82b70f9
commit f47491f
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import argparse | ||
|
||
def main(): | ||
parser = argparse.ArgumentParser(description="Updates BRAKER gene models with UTRs from a StringTie assembly.") | ||
|
||
# Mandatory input arguments | ||
parser.add_argument("-b", "--braker", required=True, help="File with BRAKER gene models in GTF format") | ||
parser.add_argument("-s", "--stringtie", required=True, help="File with StringTie transcript models in GFF format") | ||
|
||
args = parser.parse_args() | ||
|
||
# Now you can access the input file paths using args.braker and args.stringtie | ||
braker_file = args.braker | ||
stringtie_file = args.stringtie | ||
|
||
# Add your code here to process the input files and perform the desired actions | ||
|
||
if __name__ == "__main__": | ||
main() |