Skip to content

Commit

Permalink
version0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
urmi-21 committed Jan 29, 2020
1 parent fd53ea0 commit 90de7af
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

# pyrpipe: python rna-seq pipeliner

### Version
Dev

## Introduction
pyrpipe (Pronounced as "pyre-pipe") is a python package to easily develop RNA-Seq analyses workflow by integrating popular RNA-Seq analysis programs in an object oriented manner.
Expand Down Expand Up @@ -54,16 +52,26 @@ Allows fast and easy development of bioinformatics pipelines in python by provid

## Installation
Please follow these instruction

### Install latest stable version

```
pip install pyrpipe
```

### Install current developer version
```
git clone https://github.com/urmi-21/pyrpipe.git
pip install -r pyrpipe/requirements.txt
pip install -e path_to/pyrpipe
#Running tests; From pyrpipe root perform
py.test tests/
```

## Setting NCBI SRA Toolkit
Use ```vdb-config -i``` to configure SRA Toolkit. Make sure that:
* Under the **TOOLS** tab, prefetch downloads to is set to public user-repository
* Under the **CACHE** tab, location of public user-repository is not empty

## Setting up the working directory
Please make sure that the working directory (where all data will be downloaded) does not contain any previously downloaded data to avoid problems with ```prefetch```.
2 changes: 1 addition & 1 deletion pyrpipe/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ def run_portcullis(self,sub_command,verbose=False,quiet=False,logs=True,objectid
#add options
portcullis_cmd.extend(pu.parse_unix_args(self.valid_args,mergedArgsDict))

print("Executing:"+" ".join(portcullis_cmd))
#print("Executing:"+" ".join(portcullis_cmd))


#start ececution
Expand Down

0 comments on commit 90de7af

Please sign in to comment.