mirror of
https://github.com/MillironX/nfdocs-parser.git
synced 2024-11-22 08:59:55 +00:00
Add file reading to parser
Signed-off-by: Thomas A. Christensen II <25492070+MillironX@users.noreply.github.com>
This commit is contained in:
parent
4c0f7869ac
commit
29d17c9581
1 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
nextflow_file = sys.argv[1]
|
nextflow_path = sys.argv[1]
|
||||||
print(nextflow_file)
|
with open(nextflow_path) as nextflow_file:
|
||||||
|
print(nextflow_file)
|
||||||
|
|
Loading…
Reference in a new issue