Repository 'query_tabular'
hg clone https://toolshed.g2.bx.psu.edu/repos/iuc/query_tabular

Changeset 13:cf34c344508d (2021-08-19)
Previous changeset 12:623f3eb7aa48 (2021-06-19) Next changeset 14:3a6b78c39dca (2023-09-13)
Commit message:
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/query_tabular commit 35576d64a12fa664d72559172c5960c09da2b632"
modified:
filter_tabular.py
filters.py
macros.xml
query_tabular.xml
test-data/psm_dbmod_output.tsv
test-data/psm_dbmod_output1.tsv
test-data/psm_report.tsv
test-data/psm_report_out2.tsv
added:
test-data/filtered_IEDB.tsv
b
diff -r 623f3eb7aa48 -r cf34c344508d filter_tabular.py
--- a/filter_tabular.py Sat Jun 19 14:15:41 2021 +0000
+++ b/filter_tabular.py Thu Aug 19 19:40:53 2021 +0000
b
@@ -19,6 +19,8 @@
                       help='JSON array of filter specifications')
     parser.add_option('-o', '--output', dest='output', default=None,
                       help='Output file for query results')
+    parser.add_option('-c', '--comment_char)', dest='comment_char', default=None,
+                      help='Line comment character')
     parser.add_option('-v', '--verbose', dest='verbose', default=False,
                       action='store_true',
                       help='verbose')
@@ -59,7 +61,7 @@
                   file=sys.stdout)
 
     try:
-        filter_file(inputFile, outputFile, filters=filters)
+        filter_file(inputFile, outputFile, comment_char=options.comment_char, filters=filters)
     except Exception as e:
         exit('Error: %s' % (e))
 
b
diff -r 623f3eb7aa48 -r cf34c344508d filters.py
--- a/filters.py Sat Jun 19 14:15:41 2021 +0000
+++ b/filters.py Thu Aug 19 19:40:53 2021 +0000
[
@@ -4,6 +4,7 @@
 
 import re
 import sys
+from itertools import chain
 
 
 class LineFilter(object):
@@ -13,6 +14,15 @@
         self.func = lambda i, l: l.rstrip('\r\n') if l else None
         self.src_lines = []
         self.src_line_cnt = 0
+
+        def xint(x):
+            if isinstance(x, int):
+                return x
+            try:
+                return int(x)
+            except Exception:
+                return x if x else None
+
         if not filter_dict:
             return
         if filter_dict['filter'] == 'regex':
@@ -28,6 +38,13 @@
         elif filter_dict['filter'] == 'select_columns':
             cols = [int(c) - 1 for c in filter_dict['columns']]
             self.func = lambda i, l: self.select_columns(l, cols)
+        elif filter_dict['filter'] == 'select_column_slices':
+            cols = [x if isinstance(x, int) else [y if y is not None else None for y in [xint(k) for k in x.split(':')]] for x in [xint(c) for c in filter_dict['columns']]]
+            if all([isinstance(x, int) for x in cols]):
+                self.func = lambda i, l: self.select_columns(l, cols)
+            else:
+                cols = [slice(x[0], x[1], x[2] if len(x) > 2 else None) if isinstance(x, list) else x for x in cols]
+                self.func = lambda i, l: self.select_slices(l, cols)
         elif filter_dict['filter'] == 'replace':
             p = filter_dict['pattern']
             r = filter_dict['replace']
@@ -80,6 +97,10 @@
         fields = line.split('\t')
         return '\t'.join([fields[x] for x in cols])
 
+    def select_slices(self, line, cols):
+        fields = line.split('\t')
+        return '\t'.join(chain.from_iterable([y if isinstance(y, list) else [y] for y in [fields[x] for x in cols]]))
+
     def replace_add(self, line, pat, rep, col, pos):
         fields = line.rstrip('\r\n').split('\t')
         i = pos if pos is not None else len(fields)
b
diff -r 623f3eb7aa48 -r cf34c344508d macros.xml
--- a/macros.xml Sat Jun 19 14:15:41 2021 +0000
+++ b/macros.xml Thu Aug 19 19:40:53 2021 +0000
[
b'@@ -32,7 +32,12 @@\n     #elif $fi.filter.filter_type == \'select_columns\':\n       #set $filter_dict = dict()\n       #set $filter_dict[\'filter\'] = str($fi.filter.filter_type)\n-      #set $filter_dict[\'columns\'] = [int(str($ci).replace(\'c\',\'\')) for $ci in str($fi.filter.columns).split(\',\')]\n+      #set $filter_dict[\'columns\'] = [int($c) for $c in str($fi.filter.columns).replace(\'c\',\'\').split(\',\')]\n+      #silent $input_filters.append($filter_dict)\n+    #elif $fi.filter.filter_type == \'select_column_slices\':\n+      #set $filter_dict = dict()\n+      #set $filter_dict[\'filter\'] = str($fi.filter.filter_type)\n+      #set $filter_dict[\'columns\'] = [$c for $c in str($fi.filter.columns).split(\',\')]\n       #silent $input_filters.append($filter_dict)\n     #elif $fi.filter.filter_type == \'replace\':\n       #set $filter_dict = dict()\n@@ -53,6 +58,11 @@\n       #set $filter_dict[\'filter\'] = str($fi.filter.filter_type)\n       #set $filter_dict[\'column_text\'] = str($fi.filter.column_text)\n       #silent $input_filters.append($filter_dict)\n+    #elif str($fi.filter.filter_type).endswith(\'pend_dataset_name\'):\n+      #set $filter_dict = dict()\n+      #set $filter_dict[\'filter\'] = str($fi.filter.filter_type).replace(\'dataset_name\', \'text\')\n+      #set $filter_dict[\'column_text\'] = $dataset_name\n+      #silent $input_filters.append($filter_dict)\n     #elif $fi.filter.filter_type == \'normalize\':\n       #set $filter_dict = dict()\n       #set $filter_dict[\'filter\'] = str($fi.filter.filter_type)\n@@ -129,9 +139,12 @@\n                             <option value="comment">comment char</option>\n                             <option value="regex">by regex expression matching</option>\n                             <option value="select_columns">select columns</option>\n+                            <option value="select_column_slices">select columns by indices/slices</option>\n                             <option value="replace">regex replace value in column</option>\n                             <option value="prepend_line_num">prepend a line number column</option>\n                             <option value="append_line_num">append a line number column</option>\n+                            <option value="prepend_dataset_name">prepend a column with the dataset name</option>\n+                            <option value="append_dataset_name">append a column with the dataset name</option>\n                             <option value="prepend_text">prepend a column with the given text</option>\n                             <option value="append_text">append a column with the given text</option>\n                             <option value="normalize">normalize list columns, replicates row for each item in list</option>\n@@ -147,6 +160,8 @@\n                         </when>\n                         <when value="prepend_line_num"/>\n                         <when value="append_line_num"/>\n+                        <when value="prepend_dataset_name"/>\n+                        <when value="append_dataset_name"/>\n                         <when value="prepend_text">\n                             <param name="column_text" type="text" value="" label="text for column">\n                             </param>\n@@ -172,6 +187,26 @@\n                                 <validator type="regex" message="Column ordinal positions separated by commas">^(c?[1-9]\\d*)(,c?[1-9]\\d*)*$</validator>\n                             </param>\n                         </when>\n+                        <when value="select_column_slices">\n+                            <param name="columns" type="text" value="" label="enter indices or slices of the columns to keep">\n+                                <help><![CDATA[ Python offset indexes or slices.  Examples:\n+                                 <ul>\n+                                 <li>Column offset indexes: 0,3,1 (selects the first,fourth, and second columns)</li>\n+                                 <li>Negative column numbers: -1,-2 (selects the last, and second last columns)</l'..b'lace"\n                                 help="example: 1 or c1 (selects the first column)">\n@@ -211,21 +246,24 @@\n <![CDATA[\n **Input Line Filters**\n \n-  As a tabular file is being read, line filters may be applied.  \n-\n-  ::\n+  As a tabular file is being read, line filters may be applied:\n \n-  - skip leading lines              skip the first *number* of lines\n-  - comment char                    omit any lines that start with the specified comment character \n-  - by regex expression matching    *include/exclude* lines the match the regex expression \n-  - select columns                  choose to include only selected columns in the order specified \n-  - regex replace value in column   replace a field in a column using a regex substitution (good for date reformatting)\n-  - regex replace value in column   add a new column using a regex substitution of a column value\n-  - prepend a line number column    each line has the ordinal value of the line read by this filter as the first column\n-  - append a line number column     each line has the ordinal value of the line read by this filter as the last column\n-  - prepend a text column           each line has the text string as the first column\n-  - append a text column            each line has the text string as the last column\n-  - normalize list columns          replicates the line for each item in the specified list *columns*\n+    - skip leading lines                - skip the first *number* of lines\n+    - comment char                      - omit any lines that start with the specified comment character \n+    - by regex expression matching      - *include/exclude* lines that match the regex expression \n+    - select columns                    - choose to include only selected columns in the order specified \n+    - select columns by indices/slices  - *indices or slices* of the columns to keep (python_list_ indexing)\n+    - regex replace value in column     - replace a field in a column using a regex substitution (good for date reformatting)\n+    - regex replace value in column     - add a new column using a regex substitution of a column value\n+    - prepend a line number column      - each line has the *ordinal* value of the line read by this filter as the first column\n+    - append a line number column       - each line has the *ordinal* value of the line read by this filter as the last column\n+    - prepend a text column             - each line has the text string as the first column\n+    - append a text column              - each line has the text string as the last column\n+    - prepend the dataset name          - each line has the *dataset name* as the first column\n+    - append the dataset name           - each line has the *dataset name* as the last column\n+    - normalize list columns            - replicates the line for each item in the specified list *columns*\n+\n+.. _python_list: https://docs.python.org/3/library/stdtypes.html#common-sequence-operations\n ]]>\n   </token>\n \n@@ -284,13 +322,13 @@\n     0    Jane                Doe        1978-05-24                      5  3\n     1    James               Smith      1980-10-20  Spot                6  4\n \n-    Filter 6 - append a line number column:\n+    Filter 6 - select columns by indices/slices: \'1:6\'\n \n-    2    Paula               Brown      1978-05-24  Rex       dog       3  1  1\n-    2    Paula               Brown      1978-05-24  Fluff     cat       3  1  2\n-    1    Steven              Jones      1974-04-04  Allie     cat       4  2  3\n-    0    Jane                Doe        1978-05-24                      5  3  4\n-    1    James               Smith      1980-10-20  Spot                6  4  5\n+    Paula               Brown      1978-05-24  Rex       dog\n+    Paula               Brown      1978-05-24  Fluff     cat\n+    Steven              Jones      1974-04-04  Allie     cat\n+    Jane                Doe        1978-05-24               \n+    James               Smith      1980-10-20  Spot         \n \n ]]>\n   </token>\n'
b
diff -r 623f3eb7aa48 -r cf34c344508d query_tabular.xml
--- a/query_tabular.xml Sat Jun 19 14:15:41 2021 +0000
+++ b/query_tabular.xml Thu Aug 19 19:40:53 2021 +0000
[
@@ -1,4 +1,4 @@
-<tool id="query_tabular" name="Query Tabular" version="3.2.0">
+<tool id="query_tabular" name="Query Tabular" version="3.3.0">
     <description>using sqlite sql</description>
 
     <macros>
@@ -78,6 +78,7 @@
   #if len($idx_non) > 0:
     #set $jtbl['index'] = $idx_non
   #end if
+  #set $dataset_name = $tbl.table.element_identifier
   #set $linefilters = $tbl.input_opts.linefilters
   @LINEFILTERS@
   #if $input_filters:
@@ -190,6 +191,7 @@
         </data>
     </outputs>
     <tests>
+        <!-- Test 1 -->
         <test>
             <repeat name="tables">
                 <param name="table" ftype="tabular" value="customers.tsv"/>
@@ -225,6 +227,7 @@
             <output name="output" file="sales_results.tsv"/>
         </test>
 
+        <!-- Test 2 -->
         <test>
             <repeat name="tables">
                 <param name="table" ftype="tabular" value="customers.tsv"/>
@@ -255,6 +258,7 @@
             <output name="output" file="sales_results.tsv"/>
         </test>
 
+        <!-- Test 3 -->
         <test>
             <repeat name="tables">
                 <param name="table" ftype="tabular" value="customers.tsv"/>
@@ -274,6 +278,7 @@
             <output name="output" file="regex_results.tsv"/>
         </test>
 
+        <!-- Test 4 -->
         <test>
             <repeat name="tables">
                 <param name="table" ftype="tabular" value="IEDB.tsv"/>
@@ -309,6 +314,7 @@
             <output name="output" file="query_results.tsv"/>
         </test>
 
+        <!-- Test 5 -->
         <test>
             <section name="add_to_database">
                 <param name="withdb" ftype="sqlite" value="testdb.sqlite"/>
@@ -358,6 +364,7 @@
             <output name="output" file="add_to_db_results.tsv"/>
         </test>
 
+        <!-- Test 6 -->
         <test>
             <repeat name="tables">
                 <param name="table" ftype="tabular" value="pets.tsv"/>
@@ -438,6 +445,7 @@
             <output name="output" file="pet_normalized_query_results.tsv"/>
         </test>
 
+        <!-- Test 7 -->
         <test>
             <repeat name="tables">
                 <param name="table" ftype="tabular" value="psm_report.tsv"/>
@@ -463,6 +471,7 @@
             <output name="output" file="psm_report_out1.tsv" compare="re_match"/>
         </test>
 
+        <!-- Test 8 column_names_from_first_line -->
         <test>
             <repeat name="tables">
                 <param name="table" ftype="tabular" value="psm_report.tsv"/>
@@ -488,6 +497,7 @@
             <output name="output" file="psm_report_out2.tsv" compare="re_match"/>
         </test>
 
+        <!-- Test 9  modify database -->
         <test>
             <repeat name="tables">
                 <param name="table" ftype="tabular" value="psm_report.tsv"/>
@@ -528,6 +538,7 @@
             <output name="output1" file="psm_dbmod_output1.tsv" compare="re_match"/>
         </test>
 
+        <!-- Test 10 column_names_from_first_line -->
         <test>
             <repeat name="tables">
                 <param name="table" ftype="tabular" value="netMHC_summary.tsv"/>
@@ -553,6 +564,7 @@
             <output name="output" file="netMHC_summary_out1.tsv" ftype="tabular"/>
         </test>
 
+        <!-- Test 11 -->
         <test>
             <repeat name="tables">
                 <param name="table" ftype="tabular" value="netMHC_summary.tsv"/>
@@ -579,7 +591,8 @@
             <output name="output" file="netMHC_summary_out2.tsv" ftype="tabular"/>
         </test>
 
-        <test> <!-- math functions -->
+        <!-- Test 12 math functions -->
+        <test>
             <repeat name="tables">
                 <param name="table" ftype="tabular" value="math_input.tsv"/>
             </repeat>
b
diff -r 623f3eb7aa48 -r cf34c344508d test-data/filtered_IEDB.tsv
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/filtered_IEDB.tsv Thu Aug 19 19:40:53 2021 +0000
b
@@ -0,0 +1,17 @@
+peptide ID allele seq_num start end length percentile_rank comblib_sidney2008_rank IEDB.tsv
+GMYCMVFLV PPAP2C HLA-A*02:01 1 3 11 9 0.2 0.5 IEDB.tsv
+SFGMYCMVF PPAP2C HLA-A*23:01 1 1 9 9 0.5 - IEDB.tsv
+MYCMVFLVK PPAP2C HLA-A*23:01 1 4 12 9 0.65 - IEDB.tsv
+FGMYCMVFL PPAP2C HLA-A*02:01 1 2 10 9 2.3 1.3 IEDB.tsv
+GMYCMVFLV PPAP2C HLA-A*23:01 1 3 11 9 4.95 - IEDB.tsv
+FGMYCMVFL PPAP2C HLA-A*23:01 1 2 10 9 6.55 - IEDB.tsv
+SFGMYCMVF PPAP2C HLA-A*02:01 1 1 9 9 45 91 IEDB.tsv
+MYCMVFLVK PPAP2C HLA-A*02:01 1 4 12 9 54 86 IEDB.tsv
+SLDMCISGL ADAMTSL1 HLA-A*02:01 1 1 9 9 1 1.7 IEDB.tsv
+MCISGLCQL ADAMTSL1 HLA-A*23:01 1 4 12 9 6.65 - IEDB.tsv
+MCISGLCQL ADAMTSL1 HLA-A*02:01 1 4 12 9 14 24 IEDB.tsv
+SLDMCISGL ADAMTSL1 HLA-A*23:01 1 1 9 9 30.5 - IEDB.tsv
+LDMCISGLC ADAMTSL1 HLA-A*02:01 1 2 10 9 42 71 IEDB.tsv
+DMCISGLCQ ADAMTSL1 HLA-A*23:01 1 3 11 9 64.5 - IEDB.tsv
+LDMCISGLC ADAMTSL1 HLA-A*23:01 1 2 10 9 76.0 - IEDB.tsv
+DMCISGLCQ ADAMTSL1 HLA-A*02:01 1 3 11 9 97 97 IEDB.tsv
b
diff -r 623f3eb7aa48 -r cf34c344508d test-data/psm_dbmod_output.tsv
--- a/test-data/psm_dbmod_output.tsv Sat Jun 19 14:15:41 2021 +0000
+++ b/test-data/psm_dbmod_output.tsv Thu Aug 19 19:40:53 2021 +0000
[
@@ -1,4 +1,4 @@
-#scan m\/z Precursor m\/z Error Sequence Protein\(s\) confidence
+#scan m\/z Precursor m\/z Error( \[ppm])? Sequence Protein\(s\) confidence
 1 523.27\d* -4.42\d* PYANQPTVR NP_116558 99.9\d*
 3 652.84\d* 4.02\d* SSWAGLQFPVGR NP_066544_R21W 99.9\d*
 4 788.87\d* 1.27\d* AQACNLDQSGTNVAK NP_112092_rs7285167:R182C 99.9\d*
b
diff -r 623f3eb7aa48 -r cf34c344508d test-data/psm_dbmod_output1.tsv
--- a/test-data/psm_dbmod_output1.tsv Sat Jun 19 14:15:41 2021 +0000
+++ b/test-data/psm_dbmod_output1.tsv Thu Aug 19 19:40:53 2021 +0000
[
@@ -1,4 +1,4 @@
-scan Sequence Protein\(s\) Position m\/z Precursor m\/z Error confidence
+scan Sequence Protein\(s\) Position m\/z Precursor m\/z Error( \[ppm])? confidence
 1 PYANQPTVR NP_116558 2 523.27\d* -4.42\d* 99.99\d*
 3 SSWAGLQFPVGR NP_066544_R21W 19 652.84\d* 4.02\d* 99.99\d*
 4 AQACNLDQSGTNVAK NP_112092_rs7285167:R182C 179 788.87\d* 1.27\d* 99.99\d*
b
diff -r 623f3eb7aa48 -r cf34c344508d test-data/psm_report.tsv
--- a/test-data/psm_report.tsv Sat Jun 19 14:15:41 2021 +0000
+++ b/test-data/psm_report.tsv Thu Aug 19 19:40:53 2021 +0000
[
@@ -1,4 +1,3 @@
-
  Protein(s) Sequence AAs Before AAs After Position Modified Sequence Variable Modifications Fixed Modifications Spectrum File Spectrum Title Spectrum Scan Number RT m/z Measured Charge Identification Charge Theoretical Mass Isotope Number Precursor m/z Error [ppm] Localization Confidence Probabilistic PTM score D-score Confidence [%] Validation
 1 NP_116558 PYANQPTVR M IT 2 NH2-PYANQPTVR-COOH trimmed_tgriffin_cguerrer_20150826_RP_MCF7_hipH_frac_12n28.mgf tgriffin_cguerrer_20150826_RP_MCF7_hipH_frac_12n28.04679.04679.2 4679 -1.0 523.272583 2+ 2+ 1044.53524305008 0 -4.4240452979909675 100.0 Doubtful
 2 NP_443137, NP_443137_S1016F DANTQVHTLR YK; YK KM; KM 443; 443 NH2-DANTQVHTLR-COOH trimmed_tgriffin_cguerrer_20150826_RP_MCF7_hipH_frac_12n28.mgf tgriffin_cguerrer_20150826_RP_MCF7_hipH_frac_12n28.03894.03894.2 3894 -1.0 577.799622 2+ 2+ 1153.5839841476504 0 0.6117338355350196 95.0 Doubtful
b
diff -r 623f3eb7aa48 -r cf34c344508d test-data/psm_report_out2.tsv
--- a/test-data/psm_report_out2.tsv Sat Jun 19 14:15:41 2021 +0000
+++ b/test-data/psm_report_out2.tsv Thu Aug 19 19:40:53 2021 +0000
[
@@ -1,4 +1,4 @@
-Scan m\/z Precursor m\/z Error Sequence Protein\(s\)
+Scan m\/z Precursor m\/z Error( \[ppm])? Sequence Protein\(s\)
 1 523.27\d* -4.42\d* PYANQPTVR NP_116558
 3 652.84\d* 4.02\d* SSWAGLQFPVGR NP_066544_R21W
 4 788.87\d* 1.27\d* AQACNLDQSGTNVAK NP_112092_rs7285167:R182C