Learning how to use the snakemake pipelining language

public public 1yr ago Version: 3 0 bookmarks

Learning how to use the snakemake pipelining language

A paper that compare the use of a variety of workflows:

Followed the tutorial in this page: https://slowkow.com/notes/snakemake-tutorial/. The only varoiation is that I had to install graphviz tool using: conda install -c anaconda graphviz to be able to visualize the workflow.

When done with the basic tutorial I need to master how I can use it for the accreditation work. This is the best place to begin: https://snakemake.bitbucket.io/snakemake-tutorial.html

Finally, I need to go through the carpentries tutorial .

I can also use the documentation as a reference material: https://snakemake.readthedocs.io/en/stable/

The plan

Get the pipeline working then I can use it for the analysis for varinat calling pipeline. This will make it very easy for us to reproduce the pipeline in the future.

Code Snippets

14
15
shell:
    'echo {input.genome} {input.r1} {input.r2} > {output}'
22
23
24
25
26
run:
    with open(output[0], 'w') as out:
        for i in input:
            sample = i.split('.')[0]
            for line in open(i):
ShowHide 2 more snippets with no or duplicated tags.

Login to post a comment if you would like to share your experience with this workflow.

Do you know this workflow well? If so, you can request seller status , and start supporting this workflow.

Free

Created: 1yr ago
Updated: 1yr ago
Maitainers: public
URL: https://github.com/kipkurui/snakemake-demo
Name: snakemake-demo
Version: 3
Badge:
workflow icon

Insert copied code into your website to add a link to this workflow.

Other Versions:
Downloaded: 0
Copyright: Public Domain
License: None
Keywords:
  • Future updates

Related Workflows

cellranger-snakemake-gke
snakemake workflow to run cellranger on a given bucket using gke.
A Snakemake workflow for running cellranger on a given bucket using Google Kubernetes Engine. The usage of this workflow ...