File tree Expand file tree Collapse file tree 4 files changed +37
-11
lines changed Expand file tree Collapse file tree 4 files changed +37
-11
lines changed Original file line number Diff line number Diff line change 1
- name : Build Docs
1
+ name : Docs
2
2
3
3
on :
4
4
pull_request :
10
10
11
11
jobs :
12
12
build-docs :
13
- name : Docs
13
+ name : Build
14
14
runs-on : ubuntu-latest
15
15
steps :
16
16
- name : Cancel Previous Runs
29
29
run : |
30
30
pip install --upgrade pip wheel
31
31
pip install -r docs/requirements.txt
32
+ python3 -m bash_kernel.install
33
+
34
+ - name : Install package
35
+ run : |
36
+ python3 -m pip install .
32
37
33
38
- name : Build Docs
34
39
run : |
Original file line number Diff line number Diff line change 1
1
format : jb-book
2
2
root : intro
3
3
chapters :
4
+ - file : vcf2zarr_tutorial
4
5
- file : cli
Original file line number Diff line number Diff line change 1
- bed_reader
2
- click
3
- cyvcf2
1
+ bash_kernel
4
2
jupyter-book
5
- msprime
6
- pysam
7
- sgkit
8
3
sphinx-click
9
- tabulate
10
- tqdm
11
- zarr >= 2.17
Original file line number Diff line number Diff line change
1
+ ---
2
+ jupytext :
3
+ formats : md:myst
4
+ text_representation :
5
+ extension : .md
6
+ format_name : myst
7
+ kernelspec :
8
+ display_name : Bash
9
+ language : bash
10
+ name : bash
11
+ ---
12
+ # Vcf2zarr tutorial
13
+
14
+ This is a step-by-step tutorial showing you how to convert your
15
+ VCF data into Zarr format. There's three different ways to
16
+ convert your data, basically providing different levels of
17
+ convenience and flexibility corresponding to what you might
18
+ need for small, intermediate and large datasets.
19
+
20
+ ## Small
21
+
22
+ ``` {code-cell} bash
23
+ vcf2zarr convert ../tests/data/vcf/sample.vcf.gz sample.zarr -vf
24
+ ```
25
+
26
+ ## Intermediate
27
+
28
+ ## Large
You can’t perform that action at this time.
0 commit comments