nfdocs-parser/nfdocs-parser.py
Thomas A. Christensen II fc4c536ab6
Add line extraction to parser
Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
2022-01-05 13:19:33 -06:00

8 lines
212 B
Python
Executable file

#!/usr/bin/env python
import sys
nextflow_path = sys.argv[1]
with open(nextflow_path) as nextflow_file:
nextflow_lines = nextflow_file.readlines()
for i in range(1, 10):
print(nextflow_lines[i])