Mercurial > repos > bgruening > hicexplorer_hicdetectloops
comparison hicDetectLoops.xml @ 8:c88d83e2d936 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hicexplorer commit 8586409c5f329eaf75902eedc3d29a6e82560788
| author | iuc |
|---|---|
| date | Mon, 01 Jul 2024 18:41:36 +0000 |
| parents | 7cf64adef874 |
| children |
comparison
equal
deleted
inserted
replaced
| 7:7cf64adef874 | 8:c88d83e2d936 |
|---|---|
| 1 <tool id="hicexplorer_hicdetectloops" name="@BINARY@" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@"> | 1 <tool id="hicexplorer_hicdetectloops" name="@BINARY@" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> |
| 2 <description>searches for enriched regions</description> | 2 <description>searches for enriched regions</description> |
| 3 <macros> | 3 <macros> |
| 4 <token name="@BINARY@">hicDetectLoops</token> | 4 <token name="@BINARY@">hicDetectLoops</token> |
| 5 <import>macros.xml</import> | 5 <import>macros.xml</import> |
| 6 </macros> | 6 </macros> |
| 51 --threads @THREADS@ -tpc @THREADS@ | 51 --threads @THREADS@ -tpc @THREADS@ |
| 52 ]]> | 52 ]]> |
| 53 </command> | 53 </command> |
| 54 <inputs> | 54 <inputs> |
| 55 <expand macro="matrix_h5_cooler_macro" /> | 55 <expand macro="matrix_h5_cooler_macro" /> |
| 56 <param argument="--peakWidth" type="integer" optional='true' label="Peak width" help= "The width of the peak region in bins. The square around the peak will include (2 * peakWidth)^2 bins." /> | 56 <param argument="--peakWidth" type="integer" optional="true" label="Peak width" help= "The width of the peak region in bins. The square around the peak will include (2 * peakWidth)^2 bins." /> |
| 57 <param argument="--windowSize" type="integer" optional='true' label="Window size" help= "The window size for the neighborhood region the peak is located in. All values from this region (exclude the values from the peak | 57 <param argument="--windowSize" type="integer" optional="true" label="Window size" help= "The window size for the neighborhood region the peak is located in. All values from this region (exclude the values from the peak |
| 58 region) are tested against the peak region for significant difference. The square will have the size of (2 * windowSize)^2 bins" /> | 58 region) are tested against the peak region for significant difference. The square will have the size of (2 * windowSize)^2 bins" /> |
| 59 <param argument="--pValuePreselection" type="float" label="P-value preselection" help= "Only candidates with p-values less the given threshold will be considered as candidates. | 59 <param argument="--pValuePreselection" type="float" label="P-value preselection" help= "Only candidates with p-values less the given threshold will be considered as candidates. |
| 60 For each genomic distance a negative binomial distribution is fitted and for each pixel a p-value given by the cumulative density function is given. | 60 For each genomic distance a negative binomial distribution is fitted and for each pixel a p-value given by the cumulative density function is given. |
| 61 This does NOT influence the p-value for the neighborhood testing." value='0.05' /> | 61 This does NOT influence the p-value for the neighborhood testing." value="0.05" /> |
| 62 <param argument="--peakInteractionsThreshold" type="integer" label="Minimum interaction number" help= "The minimum number of interactions a detected peaks needs to have to be considered." value='5' /> | 62 <param argument="--peakInteractionsThreshold" type="integer" label="Minimum interaction number" help= "The minimum number of interactions a detected peaks needs to have to be considered." value="5" /> |
| 63 | 63 |
| 64 <!-- new--> | 64 <!-- new--> |
| 65 <param argument="--obsExpThreshold" type="float" label="Obs/exp interaction threshold" help= "The minimum number of obs/exp interactions a detected peaks needs to have to be considered" value='1.5' /> | 65 <param argument="--obsExpThreshold" type="float" label="Obs/exp interaction threshold" help= "The minimum number of obs/exp interactions a detected peaks needs to have to be considered" value="1.5" /> |
| 66 | 66 |
| 67 <param argument="--pValue" type="float" label="P-value" help= "Rejection level for the statistical test for H0. H0 is peak region and background have the same distribution." value='0.05' /> | 67 <param argument="--pValue" type="float" label="P-value" help= "Rejection level for the statistical test for H0. H0 is peak region and background have the same distribution." value="0.05" /> |
| 68 <param argument="--maxLoopDistance" optional='true' type="integer" label="Maximal loop distance" help= "Maximum genomic distance of a loop, usually loops are within a distance of ~2MB." value='2000000' /> | 68 <param argument="--maxLoopDistance" optional="true" type="integer" label="Maximal loop distance" help= "Maximum genomic distance of a loop, usually loops are within a distance of ~2MB." value="2000000" /> |
| 69 <param argument="--chromosomes" optional='true' type="text" label="Chromosomes to include" help= "Chromosomes to include in the analysis. If not set, all chromosomes are included." /> | 69 <param argument="--chromosomes" optional="true" type="text" label="Chromosomes to include" help= "Chromosomes to include in the analysis. If not set, all chromosomes are included." /> |
| 70 <param argument="--region" optional='true' type="text" label="Chromosomes to include" help= "The format is chr:start-end." /> | 70 <param argument="--region" optional="true" type="text" label="Chromosomes to include" help= "The format is chr:start-end." /> |
| 71 <param argument="--expected" type="select" label="Method to compute the expected value"> | 71 <param argument="--expected" type="select" label="Method to compute the expected value"> |
| 72 <option value="mean" selected="True">mean</option> | 72 <option value="mean" selected="True">mean</option> |
| 73 <option value="mean_nonzero">mean_nonzero</option> | 73 <option value="mean_nonzero">mean_nonzero</option> |
| 74 <option value="mean_nonzero_ligation">mean_nonzero_ligation</option> | 74 <option value="mean_nonzero_ligation">mean_nonzero_ligation</option> |
| 75 </param> | 75 </param> |
| 76 </inputs> | 76 </inputs> |
| 77 <outputs> | 77 <outputs> |
| 78 <data name='output_loops' from_work_dir='output_loop.bedgraph' format='bedgraph' label='Computed loops' /> | 78 <data name="output_loops" from_work_dir="output_loop.bedgraph" format="bedgraph" label="Computed loops" /> |
| 79 </outputs> | 79 </outputs> |
| 80 <tests> | 80 <tests> |
| 81 <test> | 81 <test> |
| 82 <param name="matrix_h5_cooler" value="small_test_matrix.cool" /> | 82 <param name="matrix_h5_cooler" value="small_test_matrix.cool" /> |
| 83 <param name="maxLoopDistance" value="30000000" /> | 83 <param name="maxLoopDistance" value="30000000" /> |
