Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
urmi-21 committed Jan 18, 2021
1 parent 4ee770a commit 8ddd475
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ More detailed examples are provided [here](https://github.com/urmi-21/pyrpipe/tr
from pyrpipe.sra import SRA
from pyrpipe.qc import Trimgalore
from pyrpipe.mapping import Star
trimgalore=qc.Trimgalore(threads=8)
star=mapping.Star(index='data/index',threads=4)
trimgalore = Trimgalore(threads=8)
star = Star(index='data/index',threads=4)
for srr in ['SRR976159','SRR978411','SRR971778']:
sra.SRA(srr).trim(trimgalore).align(star)
SRA(srr).trim(trimgalore).align(star)
```


Expand Down

0 comments on commit 8ddd475

Please sign in to comment.