Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

modify installation #105

Merged
merged 2 commits into from
Sep 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 29 additions & 19 deletions docs/install.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,7 @@

# Installation of panpipes

## Step 1
Panpipes requires the unix package `time`,
you can check if it install ed with
```
dpkg-query -W time
```

if this is not already installed on your system install it with:
```
apt-get install time
```

Alternatively:
```
conda install time
```

## Step 2: create virtual environment
## Step 1: create virtual environment

We recommend running panpipes within a virtual environment to maintain reproducibility

Expand Down Expand Up @@ -54,6 +37,31 @@ Install R packages
conda install -c conda-forge r-tidyverse r-optparse r-ggforce r-ggraph r-xtable r-hdf5r r-clustree
```

Panpipes requires the unix package `time`, in conda you can install it with:

You can check if it installed with

```
dpkg-query -W time
```
if this is not already installed on your conda env with:

```
conda install time
```
or

```
apt-get install time
```








Download and install panpipes
```
pip install panpipes
Expand All @@ -72,7 +80,6 @@ git clone https://github.com/DendrouLab/panpipes
cd panpipes
pip install .
```
Now skip to [step 3](#step-3-pipeline-configuration)

### Option 2: python venv environment:

Expand Down Expand Up @@ -123,6 +130,9 @@ panpipes --help
A list of available pipelines should appear!


You're all set to run `panpipes` on your local machine.
If you want to configure it on a HPC server, jump to [step 3](#step-3-pipeline-configuration)


## Step 3 pipeline configuration

Expand Down