https://github.com/epiqc/ScaffCC
Raw File
Tip revision: 4d7bfa034cfaea4e8346396c6198cdd3e271d272 authored by Andrew Litteken on 23 April 2020, 16:55:47 UTC
Version 5 Upgrade! (#40)
Tip revision: 4d7bfa0
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