Adds README and changes main file
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
# vcf-reader
|
||||
|
||||
Simple app to convert `vcf` file to `json` format.
|
||||
|
||||
## Usage
|
||||
|
||||
```
|
||||
$ path/to/main /path/to/file.vcf
|
||||
```
|
||||
|
||||
Optionally, save result to file.
|
||||
|
||||
```
|
||||
$ path/to/main /path/to/file.vcf > transformed.json
|
||||
$ cat transformed.json | jq
|
||||
```
|
||||
Regular → Executable
+1
@@ -1,3 +1,4 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
if(!empty($argv[1])) {
|
||||
Reference in New Issue
Block a user