Skip to content

Commit

Permalink
dummy script
Browse files Browse the repository at this point in the history
  • Loading branch information
KatharinaHoff committed Sep 28, 2023
1 parent 82b70f9 commit f47491f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions scripts/stringtie2utr.py
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()

0 comments on commit f47491f

Please sign in to comment.