Skip to content

Commit

Permalink
added rebuild is false to prevent rebuilding of fasta index
Browse files Browse the repository at this point in the history
  • Loading branch information
panushri25 committed Jul 3, 2023
1 parent 856240f commit 4d95ad1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def get_genomewide_gc(genome_fa, outf, width, stride):
3000-4000 and delete 1000-2000. And repeat.
"""

f = pyfaidx.Fasta(genome_fa, as_raw=True)
f = pyfaidx.Fasta(genome_fa, as_raw=True, rebuild=False)
outf = open(outf, 'w')

div = width//stride
Expand Down

0 comments on commit 4d95ad1

Please sign in to comment.