Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -112,7 +112,7 @@ if __name__ == "__main__": | ... | @@ -112,7 +112,7 @@ if __name__ == "__main__": |
112 | i += 1 | 112 | i += 1 |
113 | if (i % 100) == 0: | 113 | if (i % 100) == 0: |
114 | print("{} rows processed.".format(i)) | 114 | print("{} rows processed.".format(i)) |
115 | - if i == 10000: | 115 | + if i == 1000: |
116 | break | 116 | break |
117 | print("Length media exons {} and utr {}".format(length_total_exon/total_exon, length_total_utr/total_utr)) | 117 | print("Length media exons {} and utr {}".format(length_total_exon/total_exon, length_total_utr/total_utr)) |
118 | with open(os.path.join(args.outputPath, args.outputFile), mode="w") as oFile: | 118 | with open(os.path.join(args.outputPath, args.outputFile), mode="w") as oFile: | ... | ... |
-
Please register or login to post a comment