# HG changeset patch # User yating-l # Date 1506630357 14400 # Node ID e195691d3e714c95b92afcf1042fba68e8cb4d4d # Parent 3568235c44bf28cee536e5fd54988eb4282c24ee planemo upload commit 10faac43ed16e0bd479f2e9a7d76ccd08b2a5af8-dirty diff -r 3568235c44bf -r e195691d3e71 README.rst --- a/README.rst Tue Aug 08 17:53:39 2017 -0400 +++ b/README.rst Thu Sep 28 16:25:57 2017 -0400 @@ -1,6 +1,6 @@ gbToFasta ========================================================== -Galaxy wrapper for UCSC tools gbToFasta and raToTab. Convert GenBank records to fasta and create table with coding regions information for each mRNA record. +Galaxy wrapper for UCSC tools gbToFasta and raToTab. Convert GenBank records to fasta, create TRIX index, and create table with coding regions information for each mRNA record. gbToFasta --------- @@ -18,10 +18,21 @@ raToTab -------- -raToTab - Create table with coding regions information for each mRNA record + +* Create table with coding regions information for each mRNA record + + raToTab -cols=acc,cds gbfile.ra gbfile.cds + + +* Create TRIX index -usage: - raToTab -cols=acc,cds gbfile.ra gbfile.cds + #. Create search index and metadata + + raToTab -cols=acc,def gbfile.ra gbfile.info + + #. Create TRIX index + + ixIxx gbfile.info gbfile.ix gbfile.ixx Source code: ============ diff -r 3568235c44bf -r e195691d3e71 gbToFasta.xml --- a/gbToFasta.xml Tue Aug 08 17:53:39 2017 -0400 +++ b/gbToFasta.xml Thu Sep 28 16:25:57 2017 -0400 @@ -1,5 +1,5 @@ - + Convert GenBank records to fasta and Create table with coding regions information for each mRNA record ucsc_tools_340_for_BLAT @@ -11,16 +11,6 @@ outputra outputta '${gbfile}' - && - raToTab - -cols=acc,def - outputra - outputinfo - && - ixIxx - outputinfo - ${index_ix} - index_ixx #if $cds == "yes" && raToTab @@ -29,21 +19,40 @@ cds_file && python $__tool_directory__/filter.py -f cds_file -o '${outputcds}' #end if + + #if $trix == "yes" + && raToTab + -cols=acc,def + outputra + outputinfo + && ixIxx + outputinfo + ${index_ix} + ${index_ixx} + #end if + ]]> + + + + - - cds == "yes" + + trix == "yes" + + + @@ -84,6 +93,11 @@ raToTab - Convert ra file to table. raToTab -cols=acc,cds gbfile.ra gbfile.cds +Create a Trix index with coding regions information +--------------------------------------------------- +ixIxx - Create indices for simple line-oriented file of format + + Source code: ============