Changeset 1213:c347a203b94e
- Timestamp:
- 04/25/08 09:04:55
(9 months ago)
- Author:
- Greg Von Kuster <greg@bx.psu.edu>
- branch:
- default
- convert_revision:
- svn:9bcadc22-80f8-0310-8a53-c8f022958886/galaxy/trunk@2574
- Message:
Misc tool cleanup: eliminated all references to python2.3 / python2.4, imported galaxy eggs in several missed tools. Commented Pattern Matching tool section from tool_conf.xml.sample since tool is not functional. Added job runner info for short read tools in universe_wsgi.ini.sample.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r1168 |
r1213 |
|
| 69 | 69 | <tool file="extract/extract_GFF_Features.xml" /> |
|---|
| 70 | 70 | </section> |
|---|
| | 71 | <!-- |
|---|
| 71 | 72 | <section name="Pattern-Matching" id="patmat"> |
|---|
| 72 | 73 | <tool file="patmat/findcluster_mysql.xml" /> |
|---|
| 73 | 74 | </section> |
|---|
| | 75 | --> |
|---|
| 74 | 76 | <section name="Fetch Sequences" id="fetchSeq"> |
|---|
| 75 | 77 | <tool file="extract/extract_genomic_dna.xml" /> |
|---|
| r1185 |
r1213 |
|
| 1 | | #!/usr/bin/env python2.4 |
|---|
| | 1 | #!/usr/bin/env python |
|---|
| 2 | 2 | #Dan Blankenberg |
|---|
| 3 | 3 | #For a set of intervals, this tool returns the same set of intervals |
|---|
| … | … | |
| 5 | 5 | #bases covered. The original intervals are repeated for each Table/Feature. |
|---|
| 6 | 6 | |
|---|
| 7 | | import struct, optparse, os, random |
|---|
| | 7 | import sys, struct, optparse, os, random |
|---|
| 8 | 8 | from galaxy import eggs |
|---|
| 9 | 9 | import pkg_resources; pkg_resources.require( "bx-python" ) |
|---|
| … | … | |
| 14 | 14 | except: |
|---|
| 15 | 15 | pass |
|---|
| | 16 | |
|---|
| | 17 | assert sys.version_info[:2] >= ( 2, 4 ) |
|---|
| 16 | 18 | |
|---|
| 17 | 19 | class CachedRangesInFile: |
|---|
| r1129 |
r1213 |
|
| 4 | 4 | import sys, random |
|---|
| 5 | 5 | from copy import deepcopy |
|---|
| 6 | | |
|---|
| | 6 | from galaxy import eggs |
|---|
| 7 | 7 | import pkg_resources |
|---|
| 8 | 8 | pkg_resources.require( "bx-python" ) |
|---|
| r1012 |
r1213 |
|
| 11 | 11 | """ |
|---|
| 12 | 12 | |
|---|
| 13 | | import sys |
|---|
| 14 | | import copy |
|---|
| 15 | | |
|---|
| | 13 | import sys, copy |
|---|
| | 14 | from galaxy import eggs |
|---|
| 16 | 15 | import pkg_resources |
|---|
| 17 | 16 | pkg_resources.require( "bx-python" ) |
|---|
| 18 | | |
|---|
| 19 | 17 | import bx.align.axt |
|---|
| 20 | 18 | import bx.align.lav |
|---|
| 21 | 19 | |
|---|
| | 20 | assert sys.version_info[:2] >= ( 2, 4 ) |
|---|
| 22 | 21 | |
|---|
| 23 | 22 | def usage(s=None): |
|---|
| r1012 |
r1213 |
|
| 1 | 1 | #!/usr/bin/env python |
|---|
| 2 | | |
|---|
| 3 | 2 | #Reads a LAV file and writes two BED files. |
|---|
| 4 | 3 | |
|---|
| 5 | | |
|---|
| 6 | 4 | import sys |
|---|
| | 5 | from galaxy import eggs |
|---|
| 7 | 6 | import pkg_resources |
|---|
| 8 | 7 | pkg_resources.require( "bx-python" ) |
|---|
| 9 | 8 | import bx.align.lav |
|---|
| | 9 | |
|---|
| | 10 | assert sys.version_info[:2] >= ( 2, 4 ) |
|---|
| 10 | 11 | |
|---|
| 11 | 12 | def main(): |
|---|
| r1012 |
r1213 |
|
| 1 | | #!/usr/bin/env python2.3 |
|---|
| | 1 | #!/usr/bin/env python |
|---|
| 2 | 2 | |
|---|
| 3 | 3 | """ |
|---|
| … | … | |
| 17 | 17 | |
|---|
| 18 | 18 | import optparse, string, sys |
|---|
| | 19 | |
|---|
| | 20 | assert sys.version_info[:2] >= ( 2, 4 ) |
|---|
| 19 | 21 | |
|---|
| 20 | 22 | def main(): |
|---|
| r1012 |
r1213 |
|
| 1 | | #!/usr/bin/env python2.3 |
|---|
| | 1 | #!/usr/bin/env python |
|---|
| 2 | 2 | |
|---|
| 3 | 3 | """ |
|---|
| … | … | |
| 17 | 17 | |
|---|
| 18 | 18 | import optparse, string, sys |
|---|
| | 19 | |
|---|
| | 20 | assert sys.version_info[:2] >= ( 2, 4 ) |
|---|
| 19 | 21 | |
|---|
| 20 | 22 | def main(): |
|---|
| r1012 |
r1213 |
|
| 1 | | #!/usr/bin/env python2.3 |
|---|
| | 1 | #!/usr/bin/env python |
|---|
| 2 | 2 | |
|---|
| 3 | 3 | """ |
|---|
| … | … | |
| 17 | 17 | |
|---|
| 18 | 18 | import optparse, string, sys |
|---|
| | 19 | |
|---|
| | 20 | assert sys.version_info[:2] >= ( 2, 4 ) |
|---|
| 19 | 21 | |
|---|
| 20 | 22 | def main(): |
|---|
| r1129 |
r1213 |
|
| 48 | 48 | <tests> |
|---|
| 49 | 49 | <test> |
|---|
| 50 | | <param name="input1" value="1.bed" dbkey="hg17" format="bed"/> |
|---|
| | 50 | <param name="input1" value="1.bed" dbkey="hg17" ftype="bed"/> |
|---|
| 51 | 51 | <param name="maf_source" value="cached"/> |
|---|
| 52 | 52 | <param name="maf_identifier" value="8_WAY_MULTIZ_hg17"/> |
|---|
| … | … | |
| 55 | 55 | </test> |
|---|
| 56 | 56 | <test> |
|---|
| 57 | | <param name="input1" value="1.bed" dbkey="hg17" format="bed"/> |
|---|
| | 57 | <param name="input1" value="1.bed" dbkey="hg17" ftype="bed"/> |
|---|
| 58 | 58 | <param name="maf_source" value="user"/> |
|---|
| 59 | 59 | <param name="maf_file" value="5.maf"/> |
|---|
| r1012 |
r1213 |
|
| 2 | 2 | #Filters a MAF file according to the provided code file, which is generated in maf_filter.xml <configfiles> |
|---|
| 3 | 3 | import sys, os, shutil |
|---|
| | 4 | from galaxy import eggs |
|---|
| 4 | 5 | import pkg_resources; pkg_resources.require( "bx-python" ) |
|---|
| 5 | 6 | import bx.align.maf |
|---|
| r1172 |
r1213 |
|
| 1 | | #!/usr/bin/env python2.3 |
|---|
| | 1 | #!/usr/bin/env python |
|---|
| 2 | 2 | |
|---|
| 3 | 3 | """ |
|---|
| … | … | |
| 13 | 13 | import bx.align.maf |
|---|
| 14 | 14 | import sys |
|---|
| | 15 | |
|---|
| | 16 | assert sys.version_info[:2] >= ( 2, 4 ) |
|---|
| 15 | 17 | |
|---|
| 16 | 18 | def main(): |
|---|
| r1172 |
r1213 |
|
| 1 | | #!/usr/bin/env python2.3 |
|---|
| | 1 | #!/usr/bin/env python |
|---|
| 2 | 2 | |
|---|
| 3 | 3 | """ |
|---|
| … | … | |
| 8 | 8 | import pkg_resources; pkg_resources.require( "bx-python" ) |
|---|
| 9 | 9 | from bx.align import maf |
|---|
| | 10 | |
|---|
| | 11 | assert sys.version_info[:2] >= ( 2, 4 ) |
|---|
| 10 | 12 | |
|---|
| 11 | 13 | def __main__(): |
|---|
| r1172 |
r1213 |
|
| 1 | | #!/usr/bin/env python2.3 |
|---|
| | 1 | #!/usr/bin/env python |
|---|
| 2 | 2 | |
|---|
| 3 | 3 | """ |
|---|
| … | … | |
| 12 | 12 | from bx.align import maf |
|---|
| 13 | 13 | from galaxy.tools.util import maf_utilities |
|---|
| | 14 | |
|---|
| | 15 | assert sys.version_info[:2] >= ( 2, 4 ) |
|---|
| 14 | 16 | |
|---|
| 15 | 17 | def __main__(): |
|---|
| r1172 |
r1213 |
|
| 1 | | #!/usr/bin/env python2.3 |
|---|
| | 1 | #!/usr/bin/env python |
|---|
| 2 | 2 | |
|---|
| 3 | 3 | """ |
|---|
| … | … | |
| 10 | 10 | from bx.align import maf |
|---|
| 11 | 11 | from galaxy.tools.util import maf_utilities |
|---|
| | 12 | |
|---|
| | 13 | assert sys.version_info[:2] >= ( 2, 4 ) |
|---|
| 12 | 14 | |
|---|
| 13 | 15 | def __main__(): |
|---|
| r1101 |
r1213 |
|
| 143 | 143 | |
|---|
| 144 | 144 | biomart = local:/// |
|---|
| | 145 | blat2wig = pbs:///blast |
|---|
| | 146 | blat_wrapper = pbs:///blast |
|---|
| 145 | 147 | encode_db1 = local:/// |
|---|
| 146 | 148 | encode_import_all_latest_datasets1 = local:/// |
|---|
| … | … | |
| 150 | 152 | encode_import_multi-species_sequence_analysis1 = local:/// |
|---|
| 151 | 153 | encode_import_transcription_regulation1 = local:/// |
|---|
| | 154 | generate_coverage_report = pbs:///blast |
|---|
| 152 | 155 | hbvar = local:/// |
|---|
| | 156 | hist_high_quality_score = pbs:///blast |
|---|
| | 157 | megablast_wrapper = pbs:///blast |
|---|
| | 158 | megablast_xml_parser = pbs:///blast |
|---|
| 153 | 159 | microbial_import1 = local:/// |
|---|
| | 160 | quality_score_distribution = pbs:///blast |
|---|
| 154 | 161 | ucsc_table_direct1 = local:/// |
|---|
| 155 | 162 | ucsc_table_direct_archaea1 = local:/// |
|---|