Skip to content

Commit

Permalink
Fix run failure.
Browse files Browse the repository at this point in the history
  • Loading branch information
emunozdc authored and emunozdc committed Jun 25, 2024
1 parent 8405d3c commit adaa03c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions examples/time_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@
start_loading_t = time.time()
start_loading_m = memory_usage()[0]

path = "drosophila/Drosophila_melanogaster.BDGP6.46.112.gtf" ## modify if needed
d = pr.read_gtf(path)
# !! Uncomment and modify the following two lines and remove the third one
# path = "drosophila/Drosophila_melanogaster.BDGP6.46.112.gtf" ## modify if needed
# d = pr.read_gtf(path)
d = pr.PyRanges({"Feature": []})

end_loading_t = time.time()
end_loading_m = memory_usage()[0]
Expand Down

0 comments on commit adaa03c

Please sign in to comment.