PageRenderTime 26ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/tools/new_operations/coverage.xml

https://bitbucket.org/ialbert/galaxy-genetrack
XML | 91 lines | 71 code | 20 blank | 0 comment | 0 complexity | 914d1a19b52e26e55ad7f6cf8699c745 MD5 | raw file
  1. <tool id="gops_coverage_1" name="Coverage">
  2. <description>of a set of intervals on second set of intervals</description>
  3. <command interpreter="python">gops_coverage.py $input1 $input2 $output -1 ${input1.metadata.chromCol},${input1.metadata.startCol},${input1.metadata.endCol},${input1.metadata.strandCol} -2 ${input2.metadata.chromCol},${input2.metadata.startCol},${input2.metadata.endCol},${input2.metadata.strandCol}</command>
  4. <inputs>
  5. <param format="interval" name="input1" type="data" help="First query">
  6. <label>What portion of</label>
  7. </param>
  8. <param format="interval" name="input2" type="data" help="Second query">
  9. <label>is covered by</label>
  10. </param>
  11. </inputs>
  12. <outputs>
  13. <data format="interval" name="output" metadata_source="input1" />
  14. </outputs>
  15. <code file="operation_filter.py"/>
  16. <tests>
  17. <test>
  18. <param name="input1" value="1.bed" />
  19. <param name="input2" value="2.bed" />
  20. <output name="output" file="gops_coverage_out.interval" />
  21. </test>
  22. <test>
  23. <param name="input1" value="1.bed" />
  24. <param name="input2" value="2_mod.bed" ftype="interval"/>
  25. <output name="output" file="gops_coverage_out_diffCols.interval" />
  26. </test>
  27. <test>
  28. <param name="input1" value="gops_bigint.interval" />
  29. <param name="input2" value="gops_bigint2.interval" />
  30. <output name="output" file="gops_coverage_out2.interval" />
  31. </test>
  32. </tests>
  33. <help>
  34. .. class:: infomark
  35. **TIP:** If your query does not appear in the pulldown menu -> it is not in interval format. Use "edit attributes" to set chromosome, start, end, and strand columns
  36. Find the coverage of intervals in the first query on intervals in the second query. The coverage is added as two columns, the first being bases covered, and the second being the fraction of bases covered by that interval.
  37. -----
  38. **Screencasts!**
  39. See Galaxy Interval Operation Screencasts_ (right click to open this link in another window).
  40. .. _Screencasts: http://www.bx.psu.edu/cgi-bin/trac.cgi/wiki/GopsDesc
  41. -----
  42. **Example**
  43. if **First query** are genes ::
  44. chr11 5203271 5204877 NM_000518 0 -
  45. chr11 5210634 5212434 NM_000519 0 -
  46. chr11 5226077 5227663 NM_000559 0 -
  47. chr11 5226079 5232587 BC020719 0 -
  48. chr11 5230996 5232587 NM_000184 0 -
  49. and **Second query** are repeats::
  50. chr11 5203895 5203991 L1MA6 500 +
  51. chr11 5204163 5204239 A-rich 219 +
  52. chr11 5211034 5211167 (CATATA)n 245 +
  53. chr11 5211642 5211673 AT_rich 24 +
  54. chr11 5226551 5226606 (CA)n 303 +
  55. chr11 5228782 5228825 (TTTTTG)n 208 +
  56. chr11 5229045 5229121 L1PA11 440 +
  57. chr11 5229133 5229319 MER41A 1106 +
  58. chr11 5229374 5229485 L2 244 -
  59. chr11 5229751 5230083 MLT1A 913 -
  60. chr11 5231469 5231526 (CA)n 330 +
  61. the Result is the coverage density of repeats in the genes::
  62. chr11 5203271 5204877 NM_000518 0 - 172 0.107098
  63. chr11 5210634 5212434 NM_000519 0 - 164 0.091111
  64. chr11 5226077 5227663 NM_000559 0 - 55 0.034678
  65. chr11 5226079 5232587 BC020719 0 - 860 0.132145
  66. chr11 5230996 5232587 NM_000184 0 - 57 0.035827
  67. For example, the following line of output::
  68. chr11 5203271 5204877 NM_000518 0 - 172 0.107098
  69. implies that 172 nucleotides accounting for 10.7% of the this interval (chr11:5203271-5204877) overlap with repetitive elements.
  70. </help>
  71. </tool>