Changeset 988:43e5a0b863d3
- Timestamp:
- 02/22/08 15:09:25
(11 months ago)
- Author:
- Greg Von Kuster <greg@bx.psu.edu>
- branch:
- default
- convert_revision:
- svn:9bcadc22-80f8-0310-8a53-c8f022958886/galaxy/trunk@2345
- Message:
Added tool version directories to regVariation tools directory.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r987 |
r988 |
|
| 118 | 118 | </section> |
|---|
| 119 | 119 | <section name="Regional Variation" id="regVar"> |
|---|
| 120 | | <tool file="regVariation/windowSplitter.xml" /> |
|---|
| 121 | | <tool file="regVariation/featureCounter.xml" /> |
|---|
| 122 | | <tool file="regVariation/quality_filter.xml" /> |
|---|
| 123 | | <tool file="regVariation/maf_cpg_filter.xml" /> |
|---|
| | 120 | <tool file="regVariation/winSplitter/1.0.0/windowSplitter.xml" /> |
|---|
| | 121 | <tool file="regVariation/featureCoverage1/1.0.0/featureCounter.xml" /> |
|---|
| | 122 | <tool file="regVariation/qualityFilter/1.0.0/quality_filter.xml" /> |
|---|
| | 123 | <tool file="regVariation/cpgFilter/1.0.0/maf_cpg_filter.xml" /> |
|---|
| 124 | 124 | <!-- |
|---|
| 125 | | <tool file="regVariation/getIndels_2way.xml" /> |
|---|
| 126 | | <tool file="regVariation/getIndels_3way.xml" /> |
|---|
| | 125 | <tool file="regVariation/getIndels_2way/1.0.0/getIndels_2way.xml" /> |
|---|
| | 126 | <tool file="regVariation/getIndels_3way/1.0.0/getIndels_3way.xml" /> |
|---|
| 127 | 127 | --> |
|---|
| 128 | 128 | </section> |
|---|
| r987 |
r988 |
|
| 123 | 123 | </section> |
|---|
| 124 | 124 | <section name="Regional Variation" id="regVar"> |
|---|
| 125 | | <tool file="regVariation/windowSplitter.xml" /> |
|---|
| 126 | | <tool file="regVariation/featureCounter.xml" /> |
|---|
| 127 | | <tool file="regVariation/quality_filter.xml" /> |
|---|
| 128 | | <tool file="regVariation/maf_cpg_filter.xml" /> |
|---|
| 129 | | <tool file="regVariation/getIndels_2way.xml" /> |
|---|
| 130 | | <tool file="regVariation/getIndels_3way.xml" /> |
|---|
| | 125 | <tool file="regVariation/winSplitter/1.0.0/windowSplitter.xml" /> |
|---|
| | 126 | <tool file="regVariation/featureCoverage1/1.0.0/featureCounter.xml" /> |
|---|
| | 127 | <tool file="regVariation/qualityFilter/1.0.0/quality_filter.xml" /> |
|---|
| | 128 | <tool file="regVariation/cpgFilter/1.0.0/maf_cpg_filter.xml" /> |
|---|
| | 129 | <tool file="regVariation/getIndels_2way/1.0.0/getIndels_2way.xml" /> |
|---|
| | 130 | <tool file="regVariation/getIndels_3way/1.0.0/getIndels_3way.xml" /> |
|---|
| 131 | 131 | </section> |
|---|
| 132 | 132 | <section name="Evolution: HyPhy" id="hyphy"> |
|---|
| r913 |
r988 |
|
| 23 | 23 | from bx.cookbook import doc_optparse |
|---|
| 24 | 24 | |
|---|
| 25 | | from galaxyops import * |
|---|
| | 25 | from galaxy.tools.util.galaxyops import * |
|---|
| 26 | 26 | |
|---|
| 27 | 27 | def stop_err(msg): |
|---|
| r752 |
r988 |
|
| 12 | 12 | import pkg_resources; pkg_resources.require( "bx-python" ) |
|---|
| 13 | 13 | from bx.cookbook import doc_optparse |
|---|
| 14 | | from galaxyops import * |
|---|
| | 14 | from galaxy.tools.util.galaxyops import * |
|---|
| 15 | 15 | |
|---|
| 16 | 16 | def main(): |
|---|