Skip to content

Commit

Permalink
updateRM
Browse files Browse the repository at this point in the history
  • Loading branch information
urmi-21 committed Feb 19, 2020
1 parent 51e27aa commit 0941a89
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions examples/Human_annotation_snakemake/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Introduction

## Integrating pyrpipe scripts within a workflow management system (Snakemake)
We embedded pyrpipe into the Snakemake workflow management system, using it to download human RNA-Seq data with SRAtools,
quality filter with BBDuk, align reads with Hisat2, assemble transcripts with StringTie and Cufflinks,
and merge the multiple assemblies with Mikado.



## Running this example

### First build the environment
Expand Down
2 changes: 1 addition & 1 deletion pyrpipe/assembly.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def __init__(self,reference_gtf="",**kwargs):
self.reference_gtf=reference_gtf
self.passed_args_dict['-G']=reference_gtf

def perform_assembly(self,bam_file,out_dir="",out_suffix="_stringtie",overwrite=True,verbose=False,quiet=False,logs=True,objectid="NA",**kwargs):
def perform_assembly(self,bam_file,out_dir=None,out_suffix="_stringtie",overwrite=True,verbose=False,quiet=False,logs=True,objectid="NA",**kwargs):
"""Function to run stringtie using a bam file.
Parameters
Expand Down

0 comments on commit 0941a89

Please sign in to comment.