diff --git a/nfdocs-parser.py b/nfdocs-parser.py index dea5b7c..3dee098 100755 --- a/nfdocs-parser.py +++ b/nfdocs-parser.py @@ -3,4 +3,6 @@ import sys nextflow_path = sys.argv[1] with open(nextflow_path) as nextflow_file: - print(nextflow_file) + nextflow_lines = nextflow_file.readlines() + for i in range(1, 10): + print(nextflow_lines[i])