Mercurial > repos > greg > multigps
view multigps.xml @ 25:32a59270224b draft
Uploaded
author | greg |
---|---|
date | Wed, 14 Dec 2016 07:54:08 -0500 |
parents | d5c1ab05259b |
children | fcc1cc3f3e3c |
line wrap: on
line source
<tool id="multigps" name="MultiGPS" version="0.72.0"> <description>analyzes collections of multi-condition ChIP-seq data</description> <macros> <import>macros.xml</import> </macros> <requirements> <requirement type="package" version="0.72">multigps</requirement> </requirements> <command detect_errors="aggressive"> <![CDATA[ multigps ############################ ## General options ############################ --expt "$expt" --format "$expt.ext" #if $ctrl is not None: --ctrl "$ctrl" #end if #if str($verbose) == 'yes': --verbose #end if --threads="\${GALAXY_SLOTS:-4}" ############################ ## Advanced options ############################ #set aoc = $advanced_options_cond #set gmsc = $aoc.gauss_model_smoothing_cond #set rbec = $aoc.report_binding_events_cond #set rloc = $aoc.reads_limits_options_cond #set sdc = $aoc.scale_data_cond #set umc = $aoc.use_motif_cond #if str($aoc.advanced_options) == 'display': ############################ ## Limits on how many reads ############################ #if str($rloc.reads_limits) == 'yes': --fixedpb $rloc.fixedpb --poissongausspb $rloc.poissongausspb #if str($rloc.nonunique) == 'yes': --nonunique #end if --mappability $rloc.mappability #end if #if str($rloc.nocache) == 'yes': --nocache #end if ############################ ## Scaling data ############################ #if str($sdc.scale_data) == 'yes': #if str($sdc.scaling) == 'no': --noscaling $sdc.scaling #end if #if str($sdc.medianscale) == 'yes': --medianscale $sdc.medianscale #end if #if str($sdc.regressionscale) == 'yes': --regressionscale $sdc.regressionscale #end if #if str($sdc.sessscale) == 'yes': --sesscale $sdc.sesscale #end if #if $sdc.fixedscaling > 0: ‒‒fixedscaling $sdc.fixedscaling #end if --scalewin $sdc.scalewin #if str($sdc.plotscaling) == 'yes': --plotscaling $sdc.plotscaling #end if #end if ############################ ## Running MultiGPS ############################ #if str($aoc.nomodelupdate) == 'no': --nomodelupdate #end if --minmodelupdateevents $aoc.minmodelupdateevents #if str($aoc.nomodelsmoothing) == 'no': --nomodelsmoothing #end if --splinesmoothparam $aoc.splinesmoothparam #if str($gmsc.gaussmodelsmoothing) == 'yes': --gaussmodelsmoothing --gausssmoothparam $gmsc.gausssmoothparam #end if #if str($aoc.jointinmodel) == 'yes': --jointinmodel #end if #if str($aoc.fixedmodelrange) == 'yes': --fixedmodelrange #end if --prlogconf $aoc.prlogconf #if $aoc.fixedalpha > 0: --fixedalpha $aoc.fixedalpha #end if --alphascale $aoc.alphascale #if str($aoc.mlconfignotshared) == 'no': --mlconfignotshared #end if --exclude "$aoc.exclude" ############################ ## MultiGPS priors ############################ #if str($umc.use_motif) == 'yes': #set mpc = $umc.multigps_priors_cond #set rgc = $umc.reference_genome_cond #if str($rgc.reference_genome_source) == "cached": #set seq_dir = os.path.split($rgc.reference_genome.fields.path)[0] #else: ## MultiGPS requires a directory containing reference files, so symlink the history dataset. #import os #import tempfile #set seq_dir = tempfile.mkdtemp(prefix="tmp-multigps-seq-dir") #set seq_file = str($rgc.reference_genome) #set tmp_filename = "%s.fa" % str($rgc.reference_genome.dbkey) #set tmp_seq_file = os.path.join($seq_dir, $tmp_filename) ln -f -s $tmp_seq_file $seq_file && #end if --seq $seq_dir --geninfo ${chromInfo} #if str($mpc.multigps_priors) == 'yes': #set bmc = $mpc.both_motifs_cond #if str($mpc.noposprior) == 'no': --noposprior #end if --probshared $mpc.probshared #if str($bmc.nomotifs) == 'yes': --memenmotifs $bmc.memenmotifs --mememinw $bmc.mememinw --mememaxw $bmc.mememaxw #else: #set mfoc = $bmc.nomotifprior_cond --nomotifs --nomotifprior $mfoc.nomotifprior #if str($mfoc.nomotifprior) == 'yes': --memenmotifs $mfoc.memenmotifs --mememinw $mfoc.mememinw --mememaxw $mfoc.mememaxw #end if #end if #end if #end if ############################ ## Reporting binding events ############################ #if str($rbec.report_binding_events) == 'yes': --q $rbec.minqvalue --minfold $rbec.minfold #if str($rbec.nodifftests) == 'no': --nodifftests #end if --edgerod $rbec.edgerod --diffp $rbec.diffp #end if #end if --out "$output_html.files_path" > "$output_html" ]]> </command> <inputs> <param name="expt" type="data" format="bam,bed,scidx" label="Run MultiGPS on"> <validator type="unspecified_build" /> </param> <param name="ctrl" type="data" format="bam,bed,scidx" optional="True" label="Optional file containing file containing reads from a control experiment" help="Must be same forat as the input above" /> <param name="verbose" type="select" label="Generate intermediate files and extra output?" help="Verbose flag"> <option value="no" selected="True">No</option> <option value="yes">Yes</option> </param> <!-- ############################ ## Advanced options ############################ --> <conditional name="advanced_options_cond"> <param name="advanced_options" type="select" label="Advanced options"> <option value="hide" selected="true">Hide</option> <option value="display">Display</option> </param> <when value="display"> <!-- ############################ ## Limits on how many reads ############################ --> <conditional name="reads_limits_options_cond"> <param name="reads_limits" type="select" label="Set limits on how many reads can have their 5′ end at the same position in each replicate?" help="Default behavior is to estimate a global per-base limit from a Poisson distribution parameterized by the number of reads divided by the number of mappable bases in the genome. The per-base limit is set as the count corresponding to the 10^-7 probability level from the Poisson."> <option value="no" selected="True">No</option> <option value="yes">Yes</option> </param> <when value="no" /> <when value="yes"> <param name="fixedpb" type="integer" value="0" min="0" label="Fixed per-base limit" help="Zero value estimates from background model"/> <param name="poissongausspb" type="integer" value="0" min="0" label="Poisson threshold for filtering per base" help="Filter per base using the specified Poisson threshold parameterized by a local Gaussian sliding window" /> <param name="nonunique" type="select" label="Use non-unique reads?"> <option value="no" selected="True">No</option> <option value="yes">Yes</option> </param> <param name="mappability" type="float" value="0.0" min="0.8" label="Fraction of the genome that is mappable for these experiments" /> <param name="nocache" type="select" label="Turn off caching of the entire set of experiments?" help="Run slower with less memory" > <option value="no" selected="True">No</option> <option value="yes">Yes</option> </param> </when> </conditional> <!-- ############################ ## Scaling data ############################ --> <conditional name="scale_data_cond"> <param name="scale_data" type="select" label="Set data scaling parameters?" help="Default behavior is to scale signal to corresponding controls using regression on the set of signal/control ratios in 10Kbp windows."> <option value="no" selected="True">No</option> <option value="yes">Yes</option> </param> <when value="yes"> <param name="scaling" type="select" label="Use signal vs control scaling?"> <option value="yes" selected="True">Yes</option> <option value="no">No</option> </param> <param name="medianscale" type="select" label="Use the median signal/control ratio as the scaling factor?"> <option value="no" selected="True">No</option> <option value="yes">Yes</option> </param> <param name="regressionscale" type="select" label="Use scaling by regression on binned tag counts?"> <option value="no" selected="True">No</option> <option value="yes">Yes</option> </param> <param name="sesscale" type="select" label="Estimate scaling factor by SES?" help="SES: Diaz, et al. Stat Appl Genet Mol Biol. 2012"> <option value="no" selected="True">No</option> <option value="yes">Yes</option> </param> <param name="fixedscaling" type="float" value="0.0" min="0.0" label="Multiply control counts by total tag count ratio and then by this factor" help="Set as 0 to skip" /> <param name="scalewin" type="integer" min="0" value="500" label="Window size for estimating scaling ratios" help="The value is the number of base pairs. Use something much smaller than the default if scaling via SES (e.g. 200)." /> <param name="plotscaling" type="select" label="Plot diagnostic information for the chosen scaling method?"> <option value="no" selected="True">No</option> <option value="yes">Yes</option> </param> </when> <when value="no" /> </conditional> <!-- ############################ ## Running MultiGPS ############################ --> <param name="nomodelupdate" type="select" label="Perform binding model updates?"> <option value="yes" selected="True">Yes</option> <option value="no">No</option> </param> <param name="minmodelupdateevents" type="integer" value="500" min="0" label="Minimum number of events to support an update of the read distribution" /> <param name="nomodelsmoothing" type="select" label="Perform binding model smoothing?" help="Smoothing performed with a cubic spline."> <option value="yes" selected="True">Yes</option> <option value="no">No</option> </param> <param name="splinesmoothparam" type="integer" value="30" min="0" label="Spline smoothing parameter" /> <conditional name="gauss_model_smoothing_cond"> <param name="gaussmodelsmoothing" type="select" label="Use Gaussian model smoothing?" help="Select No to smooth with a cubic spline."> <option value="no" selected="True">No</option> <option value="yes">Yes</option> </param> <when value="no" /> <when value="yes"> <param name="gausssmoothparam" type="integer" value="3" min="0" label="Smoothing factor" help="Gaussian smoothing standard deviation." /> </when> </conditional> <param name="jointinmodel" type="select" label="Allow joint events in model updates?"> <option value="no" selected="True">No</option> <option value="yes">Yes</option> </param> <param name="fixedmodelrange" type="select" label="Keep binding model range fixed to inital size?" help="Select No to vary automatically"> <option value="no" selected="True">No</option> <option value="yes">Yes</option> </param> <param name="prlogconf" type="integer" value="-6" label="Poisson log threshold for potential region scanning" /> <param name="fixedalpha" type="integer" value="0" min="0" label="Impose this alpha" help="This is a sparse prior on binding events in the MultiGPS model. It can be interpreted as a minimum number of reads that each binding event must be responsible for in the model. A zero value will estimate the alpha automatically." /> <param name="alphascale" type="float" value="1.0" min="0" label="Alpha scaling factor" /> <param name="mlconfignotshared" type="select" label="Share component configs in the ML step?" help="Mainly affects the quantification of binding levels for binding events that are not shared but are located at nearby locations across experiments."> <option value="yes" selected="True">Yes</option> <option value="no">No</option> </param> <param name="exclude" type="data" optional="True" format="tabular" label="Optional file containing a set of regions to ignore during MultiGPS training" help="Ideally exclude the mitochondrial genome and other blacklisted regions that contain artifactual accumulations of reads in both ChIP-seq and control experiments." /> <!-- ############################ ## MultiGPS priors ############################ --> <conditional name="use_motif_cond"> <param name="use_motif" type="select" label="Perform motif-finding or use a motif-prior?"> <option value="no" selected="True">No</option> <option value="yes">Yes</option> </param> <when value="yes"> <!-- ############################ ## Specifying the genome ############################ --> <conditional name="reference_genome_cond"> <param name="reference_genome_source" type="select" label="Choose the source for the reference genome"> <option value="cached">locally cached</option> <option value="history">from history</option> </param> <when value="cached"> <param name="reference_genome" type="select" label="Using reference genome"> <options from_data_table="all_fasta"> <filter type="data_meta" key="dbkey" ref="expt" column="1"/> </options> <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file"/> </param> </when> <when value="history"> <param name="reference_genome" type="data" format="fasta" label="Using reference genome"> <options> <filter type="data_meta" key="dbkey" ref="expt"/> </options> <validator type="no_options" message="The current history does not include a fasta dataset with the build associated with the selected input file"/> </param> </when> </conditional> <!-- ############################ ## MultiGPS priors options ############################ --> <conditional name="multigps_priors_cond"> <param name="multigps_priors" type="select" label="Specify MultiGPS priors options?"> <option value="no" selected="True">No</option> <option value="yes">Yes</option> </param> <when value="no" /> <when value="yes"> <param name="noposprior" type="select" label="Perform inter-experiment positional prior?"> <option value="yes" selected="True">Yes</option> <option value="no">No</option> </param> <param name="probshared" type="float" value="0.9" min="0.0" label="Probability that events are shared across conditions" /> <conditional name="both_motifs_cond"> <param name="nomotifs" type="select" label="Perform both motif-finding and motif priors?"> <option value="yes" selected="True">Yes</option> <option value="no">No</option> </param> <when value="yes"> <expand macro="motif_finding_params" /> </when> <when value="no"> <conditional name="nomotifprior_cond"> <param name="nomotifprior" type="select" label="Perform motif-finding only?" help="Selecting Yes turns off motif priors."> <option value="no" selected="True">No</option> <option value="yes">Yes</option> </param> <when value="no" /> <when value="yes"> <expand macro="motif_finding_params" /> </when> </conditional> </when> </conditional> </when> </conditional> </when> <when value="no" /> </conditional> <!-- ############################ ## Reporting binding events ############################ --> <conditional name="report_binding_events_cond"> <param name="report_binding_events" type="select" label="Report binding events?"> <option value="no" selected="True">No</option> <option value="yes">Yes</option> </param> <when value="no" /> <when value="yes"> <param name="minqvalue" type="float" min="0" value="0.001" label="Minimum Q-value (corrected p-value) of reported binding events" /> <param name="minfold" type="float" min="0" value="1.5" label="Minimum event fold-change vs scaled control" /> <param name="nodifftests" type="select" label="Run differential enrichment tests?"> <option value="yes" selected="True">Yes</option> <option value="no">No</option> </param> <param name="edgerod" type="float" min="0" value="0.15" label="EdgeR over-dispersion parameter value" /> <param name="diffp" type="float" min="0" value="0.01" label="Minimum p-value for reporting differential enrichment" /> </when> </conditional> </when> <when value="hide" /> </conditional> <!-- <param name="output_process_log" type="select" label="Output MultiGPS process log?"> <option value="no" selected="True">No</option> <option value="yes">Yes</option> </param> --> </inputs> <outputs> <data name="output_html" format="html"/> </outputs> <tests> <test> <param name="expt" value="sacCer3_1.scidx" ftype="scidx" dbkey="sacCer3"/> <param name="binding_model_smoothing" value="no"/> <param name="gaussmodelsmoothing" value="yes"/> <param name="gausssmoothparam" value="3"/> <param name="use_motif" value="yes"/> <param name="reference_genome_source" value="history"/> <param name="reference_genome" value="phiX.fasta" dbkey="phiX"/> <param name="memenmotifs" value="3"/> <param name="mememinw" value="6"/> <param name="mememaxw" value="16"/> <param name="output_process_log" value="yes"/> <output name="output_process" file="output_process1.txt" ftype="txt" lines_diff="12"/> <output name="output_html" file="output_html1.html" ftype="html" lines_diff="12"/> </test> </tests> <help> **What it does** MultiGPS is a framework for analyzing collections of multi-condition ChIP-seq datasets and characterizing differential binding events between conditions. MultiGPS encourages consistency in the reported binding event locations across conditions and provides accurate estimation of ChIP enrichment levels at each event. MultiGPS loads all data to memory, so you will need a lot of available memory if you are running analysis over many conditions or large datasets. ----- **Options** * **Input files, attributes and options** - **Is this experiment signal or control?** - Designate the associated input file as a “signal” or “control” experiment. - **Condition name** - Condition name. - **Replicate name** - This is optional for control experiments, and if defined, the control will only be used for the corresponding named signal replicate. - **Read distribution file** - Optional binding event read distribution file (appropriate for the specified replicate) for initializing models. If not specified, the default distribution is used. The true distribution of reads around binding events is estimated during MultiGPS training. - **Use fixed per-base read count limit for this replicate?** - Optional fixed per-base read count limit for the specified replicate. Selecting "Yes" sets a read count limit that varies along the genome according to how neighboring bases are distributed, while selecting "No" sets a global per-base limit that is estimated from a Poisson distribution. * **Perform motif-finding or use a motif-prior?** - Integrate motif-finding or use a motif-prior via MEME. - **Choose the source for the reference genome** - Reference data can be locally cached or selected from the Galaxy history. - **Perform inter-experiment positional prior?** - Perform inter-experiment positional prior. - **Probability that events are shared across conditions** - Probability that events are shared across conditions. - **Perform both motif-finding and motif priors?** - Select "No" to turn off motif-finding and motif priors. - **Perform motif-finding only?** - Select "Yes" to turn off motif priors, performing motif-finding only. - **Number of motifs MEME should find for each condition** - Number of motifs MEME should find for each condition. - **Minimum motif width for MEME** - Minimum motif width argument for MEME. - **Maximum motif width for MEME** - Maximum motif width argument for MEME. * **General Advanced Options** - **Maximum number of training rounds for updating binding event read distributions** - Maximum number of training rounds for updating binding event read distributions - **Optional file containing a set of regions to ignore during MultiGPS training** - It’s a good idea to exclude the mitochondrial genome and other ‘blacklisted’ regions that contain artifactual accumulations of reads in both ChIP-seq and control experiments. MultiGPS will waste time trying to model binding events in these regions, even though they will not typically appear significantly enriched over the control (and thus will not be reported to the user). - **Perform binding model updates?** - Perform binding model updates? - **Minimum number of events to support an update of the read distribution** - Minimum number of events to support an update of the read distribution - **Perform binding model smoothing?** - Smooth with a cubic spline using a specified smoothing factor. - **Perform Gaussian model smoothing?** - Select "Yes" to use Gaussian model smoothing using a specified smoothing factor if binding model smoothing is not performed. - **Allow joint events in model updates?** - Specify whether to allow joint events in model updates. - **Share component configs in the ML step?** - Specify whether to share component configs in the ML step. This mainly affects the quantification of binding levels for binding events that are not shared but are located at nearby locations across experiments. * **Set limits on how many reads can have their 5′ end at the same position in each replicate?** - **Fixed per-base limit** - Fixed per-base limit. - **Poisson threshold for filtering per base** - Look at neighboring positions to decide what the per-base limit should be. - **Use non-unique reads** - Use non-unique reads. * **Set data scaling parameters?** - **Use signal vs control scaling?** - Specify whether to use signal vs control scaling. - **Use the median signal/control ratio as the scaling factor?** - Specify whether to use the median signal/control ratio as the scaling factor. - **Estimate scaling factor by SES?** - Specify whether to estimate scaling factor by SES. - **Window size for estimating scaling ratios** - Window size in base pairs for estimating scaling ratios * **Report binding events?** - **Minimum Q-value (corrected p-value) of reported binding events** - Minimum Q-value (corrected p-value) of reported binding events. - **Minimum event fold-change vs scaled control** - Minimum event fold-change vs scaled control. - **Run differential enrichment tests?** - Choose whether to run differential enrichment tests. - **EdgeR over-dispersion parameter value** - EdgeR over-dispersion parameter value. - **Minimum p-value for reporting differential enrichment** - Minimum p-value for reporting differential enrichment. * **Output MultiGPS process log?** - Select "Yes" to produce a second output dataset that contains the MultiGPS process log. </help> <expand macro="citations" /> </tool>