Mercurial > repos > gregor.m > spyboat
diff SpyBOAT.xml @ 5:d5a4180410c4 draft default tip
"planemo upload commit 7bc843096b70fe1c8fc149e69d8f87fceac4eb3b"
author | gregor.m |
---|---|
date | Sat, 28 Nov 2020 18:50:09 +0000 |
parents | a4c6fcf2c456 |
children |
line wrap: on
line diff
--- a/SpyBOAT.xml Thu Nov 26 16:40:47 2020 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,248 +0,0 @@ -<tool id="spyboat" name="SpyBOAT" version="@TOOL_VERSION@"> -<description>wavelet transforms image stacks</description> - <macros> - <token name="@TOOL_VERSION@">0.1.1</token> - </macros> - - <requirements> - <requirement type="package" version="@TOOL_VERSION@">spyboat</requirement> - </requirements> - <version_command>python $__tool_directory__/spyboat_cli.py --version</version_command> - <command detect_errors="exit_code"><![CDATA[ - python $__tool_directory__/spyboat_cli.py - --input_path '$movie' - #if $gauss_sigma: - --gauss_sigma $gauss_sigma - #end if - #if $rescale_factor: - --rescale $rescale_factor - #end if - - #if $masking.selection_mode == "create_static_mask": - --masking static - --mask_frame $masking.mask_frame - --mask_thresh $masking.mask_thresh - #else if $masking.selection_mode == "create_dynamic_mask": - --masking dynamic - --mask_thresh $masking.mask_thresh - #end if - - --dt $dt - --Tmin $tmin - --Tmax $tmax - --nT $nt - #if $tcutoff - --Tcutoff $tcutoff - #end if - #if $win_size: - --win_size $win_size - #end if - - --phase_out $phase_out - --period_out $period_out - --power_out $power_out - --amplitude_out $amplitude_out - #if $preprocessed_out: - --preprocessed_out $preprocessed_out - #end if - - --html_fname $html_out - --report_img_path '$html_out.extra_files_path' - - --ncpu "\${GALAXY_SLOTS:-8}" - > $log - - ]]></command> - <!-- "\${GALAXY_SLOTS:-8}" --> - <inputs> - <param name="movie" type="data" format="tiff" label="Movie to analyze" - help="Select a movie to wavelet analyze"/> - - <!-- - The following Wavelet parameters must have the same numerical type as defined in the - argparse parser in spyboat_cli.py - --> - - <param name="gauss_sigma" type="float" label="Sigma" - help="Width of the Gaussian smoothing kernel, leave blank if no pre-smoothing desired." optional="true"> - <validator type="in_range" min="0" max="9999999"/> - </param> - - <param name="rescale_factor" type="integer" value="" label="Rescale factor" - help="Downsamples the input movie by this factor given in %, leave blank to disable downsampling" - optional="true"> - <validator type="in_range" min="0" max="99"/> - </param> - - <conditional name="masking"> - <param label="Masking the output" name="selection_mode" type="select" help="Create a mask from the (blurred/rescaled) input to mask out regions without oscillations/signal in the output"> - <option selected="true" value="no_masking">No masking</option> - <option value="create_static_mask">Create a static mask</option> - <option value="create_dynamic_mask">Create a dynamic mask</option> - </param> - <when value="no_masking"> - </when> - <when value="create_static_mask"> - <param name="mask_frame" type="integer" value="1" label="Create mask from frame" - help="Creates a static mask from the chosen frame of the input movie."> - <validator type="in_range" min="1" max="99999"/> - </param> - <param name="mask_thresh" type="float" value="0" label="Threshold" - help="All pixels below this threshold will be masked in the output."> - <validator type="in_range" min="0" max="999999"/> - </param> - </when> - <when value="create_dynamic_mask"> - <param name="mask_thresh" type="float" value="0" label="Threshold" - help="For each frame of the input, all pixels below this threshold will be masked in the output."> - <validator type="in_range" min="0" max="999999"/> - </param> - </when> - </conditional> - - <param name="dt" type="float" value="1" label="Sampling interval" help="Time span between two frames"> - <validator type="in_range" min="0" max="9999999"/> - </param> - <param name="tmin" type="float" value="20" label="Smallest period" help="Lowest period for the wavelet transform"> - <validator type="in_range" min="0" max="9999999"/> - </param> - - <param name="tmax" type="float" value="30" label="Largest period" - help="Largest period for the wavelet transform"> - <validator type="in_range" min="0" max="9999999"/> - </param> - - <param name="nt" type="integer" value="150" label="Number of periods to scan for" - help="Determines period resolution of the Wavelet power spectra"> - <validator type="in_range" min="0" max="9999999"/> - </param> - - <param name="tcutoff" type="float" value="40" label="Tcutoff" - help="Cut-off-period for sinc filter detrending, a blank field disables detrending" optional="true"> - <validator type="in_range" min="0" max="9999999"/> - </param> - - <param name="win_size" type="float" value="" label="Sliding window size" - help="Window size for amplitude envelope estimation, leave blank to disable normalization " - optional="true"> - <validator type="in_range" min="0" max="9999999"/> - </param> - - <conditional name="save_preprocessed"> - <param label="Save preprocessed input" name="selection" type="select" help="Save the blurred/rescaled input to history? "> - <option selected="true" value="No">No</option> - <option value="Yes">Yes</option> - </param> - <!-- there is an output filter picking up the choice --> - <when value="No"> - </when> - <when value="Yes"> - </when> - </conditional> - </inputs> - - <outputs> - <data name="phase_out" format="tiff" label="${movie.name[:-4]}_phase"/> - <data name="period_out" format="tiff" label="${movie.name[:-4]}_period"/> - <data name="power_out" format="tiff" label="${movie.name[:-4]}_power"/> - <data name="amplitude_out" format="tiff" label="${movie.name[:-4]}_amplitude"/> - <data name="preprocessed_out" format="tiff" label="${movie.namee[:-4]}_preproc"> - <filter>save_preprocessed['selection'] == 'Yes'</filter> - </data> - - <data name="log" format="txt" label="log ${movie.name[:-4]}.txt"/> - <data format="html" name="html_out" label="Report ${movie.name[:-4]}"/> - - </outputs> - - <tests> - <test> - <param name="movie" value="test-movie.tif" ftype="tiff"/> - <output name="phase_out" file="phase_out.tif" ftype="tiff" compare="sim_size"/> - <output name="period_out" file="period_out.tif" ftype="tiff" compare="sim_size"/> - <output name="power_out" file="power_out.tif" ftype="tiff" compare="sim_size"/> - <output name="amplitude_out" file="amplitude_out.tif" ftype="tiff" compare="sim_size"/> - </test> - </tests> - <help><![CDATA[ - **What it does** - - Wavelet transforms a 3d-image stack (time,Y,X) pixel by pixel along the time axis and extracts/evaluates the wavelet ridge. Removal of low-frequency trends is provided via sinc filtering. - There are four output movies generated (phase, period, amplitude and power). They have exactly the same dimensions (time,Y,X) as the (rescaled) input. - - Pre-smoothing of the data with Gaussian kernels is supported and often recommendable. - - To limit the number of Wavelet transformations (computing time), downscaling of the input movie resolution is recommended. - Trimming away parts of the movie with no relevant data (e.g. outer dark edges) also speeds up the processing. - - If multiple channels are present in your data, extract the channel of interest beforehand (e.g. with Fiji). - - **Author**: Gregor Mönke (gregor.moenke@embl.de). - - **Wrapper by**: Jelle Scholtalbers (jelle.scholtalbers@embl.de). - - **Know what you are doing** - - .. class:: warningmark - - You will want to have understood the basics of time-frequency analysis with Wavelets, find more information about the analysis strategy employed at https://github.com/tensionhead/pyBOAT - - **Parameter List** - - - Sigma: - - The Kernel bandwidth (in pixels) for the Gaussian kernels to use for pre-smoothing the input data. The default value of zero means that no pre-smoothing is done. Set this number to a desired kernel width to turn on pre-smoothing. - - - Rescale factor: - - Given in %, downsamples the spatial resolution of the input movie. This speeds - up the whole analysis by a lot. - - - Masking: - SpyBOAT offers 'static' and 'dynamic' masking. 'static' means that a single mask is created by thresholding from a user selected frame. 'dynamic' creates a mask for each frame by thresholding, works better for moving/expanding/shrinking oscillatory fields. - - Sampling interval: - - Time passed between consecutive measurements, e.g 'an image every 10 minutes'. - - - Smallest Period: - - The minimal period to scan for, this is the higher (in frequency) end of the spectrum. A warning will be given during processing if the chosen value deceeds the Nyquist limit (2 times the sampling interval). - - - Largest period: - - The maximal period to scan for, this is the lower (in frequency) end of the spectrum. The inbuild Sinc filter will remove any periods larger than this form the data. Due to the 'roll off' of the filter, this value should be chosen generously. A warning will be given during processing if the chosen value exceeds the length of the time series. - - - Number of periods to scan for: - - This is the the number of convolutions computed per pixel. - - Spectral resolution = ( biggest period - smallest period ) / number of periods - - - Tcutoff: - - The cut-off period for the sinc filter, periods larger than this one will - be removed from the signal before the transform. If no value is given, - no detrending is performed. At least a gracious cut-off of around ~3 times - the largest period to be expected is recommended. - - - Sliding window size - - Length (in time units, e.g. hours) of the sliding window to estimate - an amplitude envelope. The signal then gets normalized by this envelope, - meaning that all amplitudes will be around ~1 after the transform. The - advantage is that signal with strong amplitude trends will have more - meaningful Wavelet powers after normalization. - - ]]></help> - <citations> - - <citation type="bibtex"> @article{monke2020optimal, - title={Optimal time frequency analysis for biological data-pyBOAT}, - author={M{\"o}nke, Gregor and Sorgenfrei, Frieda A and Schmal, Christoph and Granada, Adri{\'a}n E}, - journal={bioRxiv}, - year={2020}, - publisher={Cold Spring Harbor Laboratory} -} - </citation> - </citations> -</tool>