https://github.com/epiqc/ScaffCC
Revision 8f939bcb63cdac8d46ec77e0822294ddfca7441c authored by Yipeng Huang on 08 September 2018, 19:53:11 UTC, committed by Yipeng Huang on 08 September 2018, 19:53:11 UTC
1 parent 6a6059a
Raw File
Tip revision: 8f939bcb63cdac8d46ec77e0822294ddfca7441c authored by Yipeng Huang on 08 September 2018, 19:53:11 UTC
CI
Tip revision: 8f939bc
get_total_gates_line.py
#!/usr/bin/python
import sys

the_file = open(sys.argv[1],"r")
for line in the_file.readlines():
    if line.startswith( 'total_gates' ):
        print (line)
the_file.close()
back to top