# HG changeset patch # User subazini # Date 1418829378 18000 # Node ID abe73a62b59a60b9e733f0a8b4dcff8a936a866f # Parent 10216882180bb0f3d6a9ccea00e51df73de5874b Uploaded diff -r 10216882180b -r abe73a62b59a stampy_wrapper.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/stampy_wrapper.xml Wed Dec 17 10:16:18 2014 -0500 @@ -0,0 +1,132 @@ + + is a package for mapping of short reads from illumina sequencing machines onto a reference genome + stampy_wrapper.py + + ## Indexing of the reference genome + --assembly=$Assembly + --species=$species + --genome_index=$G + --output=$output + + ## Reference genome for creating index + --genome=$input + #if $refGenomeSource.genomeSource == "indexed": + --genome1="${refGenomeSource.index.fields.path}" + #end if + ## input file for single paired read + --input1=$input1 + + ## Second input only if input is paired-end. + #if $singlePaired.sPaired == "paired" + --input1=$singlePaired.input1 + --input2=$singlePaired.input2 + #end if + ## Parameters + --settings=$params.settingsType + #if $params.settingsType == "full": + --sd=${params.d} + --insert=${params.i} + --subrate=${params.r} + #end if + + + + + + + + + + + + + + + + + + + + hg18_ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +**Stampy** + +Stampy is a package for the mapping of short reads from illumina sequencing machines onto a reference genome (http://www.well.ox.ac.uk/project-stampy). Selected options used here are given below + +------ + +**Indexing usage** + +*Building index* + +stampy.py --species=human --assembly=hg18_ncbi36 -G hg18 /data/genomes/hg18/*.fa.gz + +*Building hash* + +stampy.py -g hg18 -H hg18 + +------ + + +**Alignment usage** + + stampy.py options -g hg18 -h hg18 -M reads_1.fastq reads_2.fastq + + +------ + +**Options - Description** + +--insertsize + +Set the mean insert size for paired-end reads (default: 250) + +--insertsd=N + +Set the standard deviation of the insert size distribution (default: 60) + +--substitutionrate=S + + Introduce an expected fraction S of Poisson-distributed substitutions (default: 0.001) + + + + + +