Diff of /docs/usage.rst [000000] .. [5d6472]

Switch to unified view

a b/docs/usage.rst
1
Usage
2
=====
3
4
.. _installation:
5
6
Installation
7
------------
8
9
To use MultiVelo, first install it using pip or conda:
10
11
.. code-block:: console
12
13
   $ pip install multivelo
14
15
or
16
17
.. code-block:: console
18
19
   $ conda install -c bioconda multivelo
20
21
Demo
22
----
23
24
A tutorial showing how to run MultiVelo can be found in `multivelo_demo <https://github.com/welch-lab/MultiVelo/tree/main/multivelo_demo>`_.
25
26
We use the embryonic E18 mouse brain from 10X Multiome as an example.
27
28
CellRanger output files can be downloaded from 
29
`10X website <https://www.10xgenomics.com/resources/datasets/fresh-embryonic-e-18-mouse-brain-5-k-1-standard-1-0-0>`_. 
30
Crucially, the filtered feature barcode matrix folder, ATAC peak annotations TSV, and the feature 
31
linkage BEDPE file in the secondary analysis outputs folder will be needed in this demo.
32
33
You can download the processed data that we used for this analysis if you want to run the example yourself. 
34
Unspliced and spliced counts, as well as cell type annotations can be downloaded from the MultiVelo GitHub page. 
35
We provide the cell annotations for this dataset in "cell_annotations.tsv". 
36
We also provide the nearest neighbor graph used to smooth chromatin accessibility values in the GitHub folder "seurat_wnn", 
37
which contains a zip file of three files: "nn_cells.txt", "nn_dist.txt", and "nn_idx.txt". Please unzip the archive after downloading. 
38
The R script used to generate these files can also be found in the same folder.
39