iarcbioinfo/strelka-nf

Sponsored OSS

By International Agency for Research on Cancer

Updated about 9 years ago

variant calling with strelka pipeline.

Image
Languages & frameworks
Data science
0

2.1K

iarcbioinfo/strelka-nf repository overview

strelka-nf

Strelka pipeline with Nextflow
Dependencies
  1. Install Strelka.

  2. Install nextflow.

    curl -fsSL get.nextflow.io | bash
    

    And move it to a location in your $PATH (/usr/local/bin for example here):

    sudo mv nextflow /usr/local/bin
    
Execution

Nextflow seamlessly integrates with GitHub hosted code repositories:

nextflow run iarcbioinfo/strelka-nf --tn_file pairs.txt --bam_path bam_folder/ --ref ref.fasta --strelka path_to_strelka --config strelka_config.ini

Help section

You can print the help manual by providing --help in the execution command line:

nextflow run iarcbioinfo/strelka-nf --help

This shows details about optional and mandatory parameters provided by the user.

pairs.txt format

The pairs.txt file is where you can define pairs of bam to analyse with strelka. It's a tabular file with 2 columns normal and tumor.

normaltumor
normal1.bamtumor2.bam
normal2.bamtumor2.bam
normal3.bamtumor3.bam
Global parameters

--strelka, --config, and --ref are mandatory parameters but can be defined in your nextflow config file (~/.nextflow/config or config in the working directory) and so not set as inputs.

The following is an example of config part defining this:

profiles {

        standard {
                params {
                   ref = '~/Documents/Data/references/hg19.fasta'
                   strelka = '~/bin/strelka/1.0.15/bin/'
                   config = '~/bin/strelka/1.0.15/bin/strelka_config_bwa_default.ini'
                }
        }

Tag summary

Content type

Image

Digest

Size

132.5 MB

Last updated

about 9 years ago

docker pull iarcbioinfo/strelka-nf

This week's pulls

Pulls:

224

Last week