strelka-nf
variant calling with strelka pipeline.
2.1K
Install Strelka.
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
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
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.
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.
| normal | tumor |
|---|---|
| normal1.bam | tumor2.bam |
| normal2.bam | tumor2.bam |
| normal3.bam | tumor3.bam |
--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'
}
}
Content type
Image
Digest
Size
132.5 MB
Last updated
about 9 years ago
docker pull iarcbioinfo/strelka-nfPulls:
224
Last week