Usage#
Installation#
Installing genereporter is straight forward–just clone the repository and install the package using pip.
First, clone the github repository.
$ git clone https://github.com/chickaroo/genereporter
Next, you might want to make a conda environment to install the package in.
$ conda create -n genereporter python=3.11
$ conda activate genereporter
Then, navigate to the directory and install the package using pip.
$ cd genereporter
$ pip install .
This will install the package and all of its dependencies using pip. The standard dependencies are only geared towards the core functionality of the package. If you want to generate any of the GRN data using SCENIC, for example, you will need to install additional dependencies according to the pySCENIC documentation.
You can now test if the package is installed correctly by running the following command:
$ python
>>>import genereporter
If you don’t get any errors, the package is installed correctly.
Obtaining Data#
The genereporter repository does not house the VEO-IBD data for storage and safety reasons. The data can be obtained from the Helmholtz HPC cluster.
Vignettes#
Check out the notebooks for examples on how to use the package: Using CellPipeline Using GRNPipeline Using SamplePipeline