Mercurial > repos > iuc > ncbi_eutils_epost
annotate __efetch_build_options.py @ 2:7d868844e952 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit db33413a06c275efd4cc8e771c37facf543a2cfa"
| author | iuc | 
|---|---|
| date | Wed, 11 Mar 2020 03:59:36 -0400 | 
| parents | 196b8dd07896 | 
| children | ae3a5d753d42 | 
| rev | line source | 
|---|---|
| 0 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 1 #!/usr/bin/env python | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 2 # Daniel Blankenberg | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 3 # Creates the options for tool interface | 
| 1 
196b8dd07896
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit a4b0969b33a68a0ea9ba12291f6694aec24f13ed
 iuc parents: 
0diff
changeset | 4 from __future__ import print_function | 
| 
196b8dd07896
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit a4b0969b33a68a0ea9ba12291f6694aec24f13ed
 iuc parents: 
0diff
changeset | 5 | 
| 0 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 6 import re | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 7 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 8 # http://eutils.ncbi.nlm.nih.gov/entrez/eutils/einfo.fcgi | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 9 db_list = ''' | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 10 <DbName>annotinfo</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 11 <DbName>assembly</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 12 <DbName>bioproject</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 13 <DbName>biosample</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 14 <DbName>biosystems</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 15 <DbName>blastdbinfo</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 16 <DbName>books</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 17 <DbName>cdd</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 18 <DbName>clinvar</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 19 <DbName>clone</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 20 <DbName>dbvar</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 21 <DbName>gap</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 22 <DbName>gapplus</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 23 <DbName>gds</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 24 <DbName>gencoll</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 25 <DbName>gene</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 26 <DbName>genome</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 27 <DbName>geoprofiles</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 28 <DbName>grasp</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 29 <DbName>gtr</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 30 <DbName>homologene</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 31 <DbName>medgen</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 32 <DbName>mesh</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 33 <DbName>ncbisearch</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 34 <DbName>nlmcatalog</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 35 <DbName>nuccore</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 36 <DbName>nucest</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 37 <DbName>nucgss</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 38 <DbName>nucleotide</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 39 <DbName>omim</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 40 <DbName>orgtrack</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 41 <DbName>pcassay</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 42 <DbName>pccompound</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 43 <DbName>pcsubstance</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 44 <DbName>pmc</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 45 <DbName>popset</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 46 <DbName>probe</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 47 <DbName>protein</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 48 <DbName>proteinclusters</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 49 <DbName>pubmed</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 50 <DbName>pubmedhealth</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 51 <DbName>seqannot</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 52 <DbName>snp</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 53 <DbName>sra</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 54 <DbName>structure</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 55 <DbName>taxonomy</DbName> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 56 <DbName>unigene</DbName>'''.replace( "<DbName>", "").replace( "</DbName>", "").split("\n") | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 57 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 58 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 59 help = ''' (all) | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 60 docsum xml Document Summary | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 61 docsum json Document Summary | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 62 full text Full Document | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 63 uilist xml Unique Identifier List | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 64 uilist text Unique Identifier List | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 65 full xml Full Document | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 66 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 67 bioproject | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 68 native BioProject Report | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 69 native xml RecordSet | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 70 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 71 biosample | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 72 native BioSample Report | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 73 native xml BioSampleSet | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 74 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 75 biosystems | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 76 native xml Sys-set | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 77 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 78 gds | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 79 native xml RecordSet | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 80 summary text Summary | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 81 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 82 gene | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 83 gene_table xml Gene Table | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 84 native text Gene Report | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 85 native asn.1 Entrezgene | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 86 native xml Entrezgene-Set | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 87 tabular tabular Tabular Report | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 88 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 89 homologene | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 90 alignmentscores text Alignment Scores | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 91 fasta fasta FASTA | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 92 homologene text Homologene Report | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 93 native text Homologene List | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 94 native asn.1 HG-Entry | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 95 native xml Entrez-Homologene-Set | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 96 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 97 mesh | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 98 full text Full Record | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 99 native text MeSH Report | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 100 native xml RecordSet | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 101 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 102 nlmcatalog | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 103 native text Full Record | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 104 native xml NLMCatalogRecordSet | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 105 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 106 pmc | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 107 medline text MEDLINE | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 108 native xml pmc-articleset | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 109 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 110 pubmed | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 111 abstract xml Abstract | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 112 medline text MEDLINE | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 113 native asn.1 Pubmed-entry | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 114 native xml PubmedArticleSet | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 115 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 116 (sequences) | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 117 acc text Accession Number | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 118 est xml EST Report | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 119 fasta fasta FASTA | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 120 fasta xml TinySeq | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 121 fasta_cds_aa fasta CDS Products | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 122 fasta_cds_na fasta Coding Regions | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 123 ft text Feature Table | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 124 gb text GenBank Flatfile | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 125 gb xml GBSet | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 126 gbc xml INSDSet | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 127 gbwithparts text GenBank with Contig Sequences | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 128 gene_fasta fasta FASTA of Gene | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 129 gp text GenPept Flatfile | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 130 gp xml GBSet | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 131 gpc xml INSDSet | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 132 gss text GSS Report | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 133 ipg text Identical Protein Report | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 134 ipg xml IPGReportSet | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 135 native text Seq-entry | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 136 native xml Bioseq-set | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 137 seqid asn.1 Seq-id | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 138 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 139 snp | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 140 chr text Chromosome Report | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 141 docset text Summary | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 142 fasta fasta FASTA | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 143 flt text Flat File | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 144 native asn.1 Rs | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 145 native xml ExchangeSet | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 146 rsr tabular RS Cluster Report | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 147 ssexemplar text SS Exemplar List | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 148 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 149 sra | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 150 native xml EXPERIMENT_PACKAGE_SET | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 151 runinfo xml SraRunInfo | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 152 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 153 structure | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 154 mmdb asn.1 Ncbi-mime-asn1 strucseq | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 155 native text MMDB Report | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 156 native xml RecordSet | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 157 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 158 taxonomy | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 159 native text Taxonomy List | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 160 native xml TaxaSet'''.split("\n") | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 161 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 162 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 163 db = {} | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 164 for db_name in db_list: | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 165 db[db_name] = [] | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 166 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 167 section = None | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 168 for line in help: | 
| 1 
196b8dd07896
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit a4b0969b33a68a0ea9ba12291f6694aec24f13ed
 iuc parents: 
0diff
changeset | 169 line = re.split(r'\s{2,}', line.strip()) | 
| 0 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 170 # Ignore empties | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 171 if len(line) == 0: | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 172 continue | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 173 # Section headers have one item | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 174 elif len(line) == 1: | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 175 section = line[0] | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 176 db[section] = [] | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 177 # Format lines have 2+ | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 178 elif len(line) == 2: | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 179 parent_format = line[0] | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 180 description = line[1] | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 181 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 182 if parent_format not in db[section]: | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 183 db[section].append((parent_format, None, description)) | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 184 elif len(line) == 3: | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 185 parent_format = line[0] | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 186 format_modifier = line[1] | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 187 description = line[2] | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 188 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 189 if parent_format not in db[section]: | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 190 db[section].append((parent_format, format_modifier, description)) | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 191 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 192 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 193 all_formats = db['(all)'] | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 194 del db['(all)'] | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 195 sequences_formats = db['(sequences)'] | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 196 del db['(sequences)'] | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 197 del db[''] | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 198 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 199 for key in db: | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 200 db[key] += all_formats | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 201 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 202 for key in ('nuccore', 'nucest', 'nucgss', 'nucleotide'): | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 203 db[key] += sequences_formats | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 204 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 205 MACRO_TPL = ''' | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 206 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 207 ''' | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 208 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 209 WHEN_TPL = ''' <when value="{format}"> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 210 <param name="output_format" type="select" label="Output Format"> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 211 {format_options} | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 212 </param> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 213 </when>''' | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 214 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 215 FORMAT_OPTION_TPL = '''<option value="{name_type}">{name_type_human}</option>''' | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 216 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 217 format_names = {} | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 218 | 
| 1 
196b8dd07896
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit a4b0969b33a68a0ea9ba12291f6694aec24f13ed
 iuc parents: 
0diff
changeset | 219 print(''' <xml name="db"> | 
| 0 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 220 <conditional name="db"> | 
| 1 
196b8dd07896
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit a4b0969b33a68a0ea9ba12291f6694aec24f13ed
 iuc parents: 
0diff
changeset | 221 <expand macro="dbselect" />''') | 
| 0 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 222 for key in sorted(db): | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 223 format_options = [] | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 224 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 225 for (parent_format, format_modifier, description) in sorted(db[key]): | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 226 name_human = description | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 227 if format_modifier: | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 228 name_human += ' (%s)' % format_modifier | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 229 format_string = '%s-%s' % (parent_format, format_modifier) | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 230 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 231 format_options.append(FORMAT_OPTION_TPL.format( | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 232 name_type=format_string, | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 233 name_type_human=name_human, | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 234 )) | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 235 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 236 format_names[format_string] = format_modifier | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 237 | 
| 1 
196b8dd07896
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit a4b0969b33a68a0ea9ba12291f6694aec24f13ed
 iuc parents: 
0diff
changeset | 238 print(WHEN_TPL.format( | 
| 0 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 239 format=key, | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 240 format_options='\n '.join(format_options) | 
| 1 
196b8dd07896
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit a4b0969b33a68a0ea9ba12291f6694aec24f13ed
 iuc parents: 
0diff
changeset | 241 )) | 
| 0 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 242 | 
| 1 
196b8dd07896
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit a4b0969b33a68a0ea9ba12291f6694aec24f13ed
 iuc parents: 
0diff
changeset | 243 print(''' </conditional> | 
| 
196b8dd07896
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit a4b0969b33a68a0ea9ba12291f6694aec24f13ed
 iuc parents: 
0diff
changeset | 244 </xml>''') | 
| 0 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 245 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 246 CHANGE_FORMAT_TPL = ''' | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 247 <xml name="efetch_formats"> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 248 <change_format> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 249 {formats} | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 250 </change_format> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 251 </xml> | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 252 ''' | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 253 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 254 CHANGE_FORMAT_WHEN_TPL = '''<when input="output_format" value="{key}" format="{value}"/>''' | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 255 # Format options | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 256 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 257 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 258 whens = [] | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 259 for (k, v) in format_names.items(): | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 260 if v is None: | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 261 v = 'text' | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 262 elif v == 'asn.1': | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 263 v = 'asn1' | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 264 | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 265 whens.append(CHANGE_FORMAT_WHEN_TPL.format( | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 266 key=k, value=v | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 267 )) | 
| 
18e6b25259ff
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit 15bcc5104c577b4b9c761f2854fc686c07ffa9db
 iuc parents: diff
changeset | 268 | 
| 1 
196b8dd07896
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit a4b0969b33a68a0ea9ba12291f6694aec24f13ed
 iuc parents: 
0diff
changeset | 269 print(CHANGE_FORMAT_TPL.format(formats='\n '.join(whens))) | 
