extensions/net.sf.basedb.varsearch/trunk/META-INF/extensions.xml

Code
Comments
Other
Rev Date Author Line
6107 22 Jan 21 nicklas 1 <?xml version="1.0" encoding="UTF-8" ?>
6107 22 Jan 21 nicklas 2 <extensions xmlns="http://base.thep.lu.se/extensions.xsd">
6107 22 Jan 21 nicklas 3   <about safe-resources="1" safe-scripts="1">
6107 22 Jan 21 nicklas 4     <name>Variant Search Engine</name>
6107 22 Jan 21 nicklas 5     <description>
6107 22 Jan 21 nicklas 6       A package implementing an indexing service
6107 22 Jan 21 nicklas 7       and search engine for variants in VCF files.
6107 22 Jan 21 nicklas 8       The implementation works with VCF files produced by
6107 22 Jan 21 nicklas 9       the variant calling pipeline in Reggie and with the
6107 22 Jan 21 nicklas 10       released data in Relax.
6107 22 Jan 21 nicklas 11     </description>
7307 28 Aug 23 nicklas 12     <version>1.10-dev</version>
7059 13 Mar 23 nicklas 13     <min-base-version>3.19.8</min-base-version>
6107 22 Jan 21 nicklas 14     <copyright>BASE development team</copyright>
6107 22 Jan 21 nicklas 15     <email>basedb-users@lists.sourceforge.net</email>
6312 11 Jun 21 nicklas 16     <url>https://baseplugins.thep.lu.se/wiki/net.sf.basedb.varsearch</url>
6107 22 Jan 21 nicklas 17   </about>
6107 22 Jan 21 nicklas 18
6109 25 Jan 21 nicklas 19   <extension
6111 29 Jan 21 nicklas 20     id="net.sf.basedb.varsearch.service"
6111 29 Jan 21 nicklas 21     extends="net.sf.basedb.clients.web.services"
6111 29 Jan 21 nicklas 22     >
6111 29 Jan 21 nicklas 23     <about>
6111 29 Jan 21 nicklas 24       <name>Variant Indexing Service</name>
6111 29 Jan 21 nicklas 25       <description>
6111 29 Jan 21 nicklas 26         A service for maintaining an index of variants discovered
6111 29 Jan 21 nicklas 27         by the variant calling pipeline.
6111 29 Jan 21 nicklas 28       </description>
6111 29 Jan 21 nicklas 29     </about>
6111 29 Jan 21 nicklas 30     <action-factory>
6111 29 Jan 21 nicklas 31       <factory-class>
6111 29 Jan 21 nicklas 32         net.sf.basedb.varsearch.service.VarSearchServiceFactory
6111 29 Jan 21 nicklas 33       </factory-class>
6111 29 Jan 21 nicklas 34     </action-factory>
6111 29 Jan 21 nicklas 35   </extension>
6111 29 Jan 21 nicklas 36
6111 29 Jan 21 nicklas 37
6111 29 Jan 21 nicklas 38   <extension
6109 25 Jan 21 nicklas 39     id="net.sf.basedb.varsearch.lucene-query"
6109 25 Jan 21 nicklas 40     extends="net.sf.basedb.query.entity-query-filter"
6109 25 Jan 21 nicklas 41     >
6109 25 Jan 21 nicklas 42     <about>
6109 25 Jan 21 nicklas 43       <name>Lucene query filter</name>
6109 25 Jan 21 nicklas 44       <description>
6109 25 Jan 21 nicklas 45         Implements Lucene query againts variants. Triggered
6109 25 Jan 21 nicklas 46         on filter expressions starting with "!x.lucene".
6109 25 Jan 21 nicklas 47       </description>
6109 25 Jan 21 nicklas 48     </about>
6109 25 Jan 21 nicklas 49     <index>1</index>
6109 25 Jan 21 nicklas 50     <action-factory>
6109 25 Jan 21 nicklas 51       <factory-class>
6132 16 Feb 21 nicklas 52         net.sf.basedb.varsearch.query.LuceneQueryFactory
6109 25 Jan 21 nicklas 53       </factory-class>
6109 25 Jan 21 nicklas 54     </action-factory>
6109 25 Jan 21 nicklas 55   </extension>
6109 25 Jan 21 nicklas 56   
6109 25 Jan 21 nicklas 57   <extension
6109 25 Jan 21 nicklas 58     id="net.sf.basedb.varsearch.lucene-column"
6109 25 Jan 21 nicklas 59     extends="net.sf.basedb.clients.web.listcolumn.rawbioassay"
6109 25 Jan 21 nicklas 60     >
6109 25 Jan 21 nicklas 61     <index>6</index>
6109 25 Jan 21 nicklas 62     <about safe-scripts="1">
6109 25 Jan 21 nicklas 63       <name>Lucene</name>
6109 25 Jan 21 nicklas 64       <description>
6109 25 Jan 21 nicklas 65         Adds a Lucene column to the raw bioassays table. 
6109 25 Jan 21 nicklas 66         It will only display information that is matching
6109 25 Jan 21 nicklas 67         the filter.
6109 25 Jan 21 nicklas 68       </description>
6109 25 Jan 21 nicklas 69     </about>
6109 25 Jan 21 nicklas 70     <action-factory>
6109 25 Jan 21 nicklas 71       <factory-class>
6109 25 Jan 21 nicklas 72         net.sf.basedb.varsearch.LuceneColumnFactory
6109 25 Jan 21 nicklas 73       </factory-class>
6129 12 Feb 21 nicklas 74       <parameters>
6129 12 Feb 21 nicklas 75         <stylesheet>~/css/varsearch.css</stylesheet>
6156 02 Mar 21 nicklas 76         <script>~/varsearch.js</script>
6129 12 Feb 21 nicklas 77       </parameters>
6109 25 Jan 21 nicklas 78     </action-factory>
6109 25 Jan 21 nicklas 79   </extension>
6109 25 Jan 21 nicklas 80
6160 04 Mar 21 nicklas 81   <extension
6160 04 Mar 21 nicklas 82     id="net.sf.basedb.varsearch.admin"
6160 04 Mar 21 nicklas 83     extends="net.sf.basedb.clients.web.menu.extensions"
6160 04 Mar 21 nicklas 84     >
6160 04 Mar 21 nicklas 85     <index>90</index>
6160 04 Mar 21 nicklas 86     <about safe-scripts="1">
6160 04 Mar 21 nicklas 87       <name>Variant Search (admin)</name>
6160 04 Mar 21 nicklas 88       <description>
6160 04 Mar 21 nicklas 89         Menu entry for Variant Search administrators.
6160 04 Mar 21 nicklas 90       </description>
6160 04 Mar 21 nicklas 91     </about>
6160 04 Mar 21 nicklas 92     <action-factory>
6160 04 Mar 21 nicklas 93       <factory-class>
6160 04 Mar 21 nicklas 94         net.sf.basedb.varsearch.extensions.RequireRoleMenuItemFactory
6160 04 Mar 21 nicklas 95       </factory-class>
6160 04 Mar 21 nicklas 96       <parameters>
6160 04 Mar 21 nicklas 97         <title>Variant Search (admin)</title>
6160 04 Mar 21 nicklas 98         <tooltip>Variant Search administration</tooltip>
6160 04 Mar 21 nicklas 99         <data-url>~/admin/index.jsp?ID=$SESSION-ID$</data-url>
6160 04 Mar 21 nicklas 100         <role>net.sf.basedb.core.Role.ADMINISTRATOR</role>
6160 04 Mar 21 nicklas 101       </parameters>
6160 04 Mar 21 nicklas 102     </action-factory>
6160 04 Mar 21 nicklas 103   </extension>
6160 04 Mar 21 nicklas 104
6526 20 Dec 21 nicklas 105   <extension 
6526 20 Dec 21 nicklas 106     id="net.sf.basedb.varsearch.vcf-actions"
6526 20 Dec 21 nicklas 107     extends="net.sf.basedb.clients.web.file-viewer"
6526 20 Dec 21 nicklas 108     >
6526 20 Dec 21 nicklas 109     <about>
6526 20 Dec 21 nicklas 110       <name>Genotype and variant call VCF viewer</name>
6526 20 Dec 21 nicklas 111       <description>
6526 20 Dec 21 nicklas 112         Add links for viewing the genotype VCF (genotype_*.vcf) 
6526 20 Dec 21 nicklas 113         file and the filtered variant call VCF file (variants-filtered.vcf).
6526 20 Dec 21 nicklas 114       </description>
6526 20 Dec 21 nicklas 115     </about>
6526 20 Dec 21 nicklas 116     <action-factory>
6526 20 Dec 21 nicklas 117       <factory-class>
6526 20 Dec 21 nicklas 118         net.sf.basedb.varsearch.extensions.VcfViewerActionFactory
6526 20 Dec 21 nicklas 119       </factory-class>
6526 20 Dec 21 nicklas 120       <parameters>
6526 20 Dec 21 nicklas 121         <script>~/scripts/vcf-actions.js</script>
6526 20 Dec 21 nicklas 122       </parameters>
6526 20 Dec 21 nicklas 123     </action-factory>
6526 20 Dec 21 nicklas 124   </extension>
6526 20 Dec 21 nicklas 125
6107 22 Jan 21 nicklas 126 </extensions>