Skip to content

Commit b590bc6

Browse files
committed
now it is possible to merge multiple vcf files
1 parent 55abc5f commit b590bc6

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ vcf_tools -filter \
4949
-num_cpu 7
5050
```
5151

52-
You can merge `.vcf` files (now it is possible to merge multiple vcf files):
52+
You can merge `.vcf` files:
5353

5454
```bash
5555
vcf_tools -merge \
@@ -58,6 +58,21 @@ vcf_tools -merge \
5858
-o ./data/test_merged.vcf
5959
```
6060

61+
Now it is possible to merge multiple vcf files:
62+
63+
```bash
64+
vcf_tools -merge \
65+
--file_with_vcfs ./data/vcfs.txt \
66+
-o ./data/test_merged.vcf
67+
```
68+
69+
Where vcfs.txt is:
70+
71+
```txt
72+
./data/merge/test1.vcf
73+
./data/merge/test2.vcf
74+
```
75+
6176
To run tests, use:
6277

6378
```bash

0 commit comments

Comments
 (0)