Skip to content

Commit f9a0067

Browse files
author
JLTrincado
committed
Adapted get_distance_to_ss/v2 to genes in reverse strand
1 parent 7feaf07 commit f9a0067

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

get_distance_to_ss.py

+7-7
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333
def main():
3434
try:
3535

36-
# orfs_path = sys.argv[1]
37-
# transcripts_paths = sys.argv[2]
38-
# output_path = sys.argv[3]
39-
40-
orfs_path = "/home/shinoda/Desktop/Florida/annotation/MBNL1_TEST/MBNL3_possible_ORFs_refseq.fa"
41-
transcripts_paths = "/home/shinoda/Desktop/Florida/annotation/MBNL1_TEST/MBNL3_possible_transcripts_refseq.fa.paths"
42-
output_path = "/home/shinoda/Desktop/Florida/annotation/MBNL1_TEST/MBNL3_evaluated_refseq.paths"
36+
orfs_path = sys.argv[1]
37+
transcripts_paths = sys.argv[2]
38+
output_path = sys.argv[3]
39+
#
40+
# orfs_path = "/home/shinoda/Desktop/Florida/annotation/MBNL1_TEST/MBNL3_possible_ORFs_refseq.fa"
41+
# transcripts_paths = "/home/shinoda/Desktop/Florida/annotation/MBNL1_TEST/MBNL3_possible_transcripts_refseq.fa.paths"
42+
# output_path = "/home/shinoda/Desktop/Florida/annotation/MBNL1_TEST/MBNL3_evaluated_refseq.paths"
4343

4444
# 1. Extract just the first ORF (the longest) from each transcript
4545
outFile = open(orfs_path+".unique", 'w')

0 commit comments

Comments
 (0)