Created
January 7, 2015 15:36
-
-
Save terrycojones/2a597c1facffbca5bdd7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
python -m cProfile -o /tmp/new.prof bin/find-matches.py --database light.db --fastaFile query.fa > query.out | |
#!/usr/bin/env python | |
import sys | |
from pstats import Stats | |
p = Stats(sys.argv[1]) | |
#p.strip_dirs().sort_stats('cumulative').print_stats() | |
p.sort_stats('cumulative').print_stats() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment