We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9edf636 + 885a37a commit 01018cdCopy full SHA for 01018cd
1 file changed
README.md
@@ -1,16 +1,24 @@
1
#VCF Parser#
2
Small library for parsing vcf files. Based on [PyVCF](https://github.com/jamescasbon/PyVCF)
3
4
+**vcf_parser can split multi allelic calls in vcf now.**
5
+
6
pip install vcf_parser
7
8
+If used within a python environment:
9
10
```python3
11
from vcf_parser import parser
12
my_parser = parser.VCFParser(infile='infile.vcf')
13
for variant in my_parser:
14
print(variant)
15
```
16
-**vcf_parser can split multi allelic calls in vcf now.**
17
+or used as a command line tool
18
19
+ vcf_parser examples/test_vcf.vcf --split
20
21
+Prints a new vcf with splitted variants to screen.
22
23
Vcf parser is really a lightweight version of [PyVCF](https://github.com/jamescasbon/PyVCF) with most of it's code borrowed and modified from there.
24
0 commit comments