Newer
Older
| |ASCII |HTML |
|----------------|-------------------------------|-----------------------------|
|Single backticks|`'Isn't this fun?'` |'Isn't this fun?' |
|Quotes |`"Isn't this fun?"` |Defines values for a set of parameters of the tools blastn and blastp. Possible values are<ul><li>blastn: Default value blastn</li></ul><table> <thead> <tr> <th></th> <th>ASCII</th> <th>HTML</th> </tr> </thead> <tbody> <tr> <td>Single backticks</td> <td><code>'Isn't this fun?'</code></td> <td>‘Isn’t this fun?’</td> </tr> <tr> <td>Quotes</td> <td><code>"Isn't this fun?"</code></td> <td>“Isn’t this fun?”</td> </tr> <tr> <td>Dashes</td> <td><code>-- is en-dash, --- is em-dash</code></td> <td>– is en-dash, — is em-dash</td> </tr> </tbody> </table><ul><li>blastp: Default value blastp</li></ul><table> <thead> <tr> <th></th> <th>ASCII</th> <th>HTML</th> </tr> </thead> <tbody> <tr> <td>Single backticks</td> <td><code>'Isn't this fun?'</code></td> <td>‘Isn’t this fun?’</td> </tr> <tr> <td>Quotes</td> <td><code>"Isn't this fun?"</code></td> <td>“Isn’t this fun?”</td> </tr> <tr> <td>Dashes</td> <td><code>-- is en-dash, --- is em-dash</code></td> <td>– is en-dash, — is em-dash</td> </tr> </tbody> </table> |
|Dashes |`-- is en-dash, --- is em-dash`|-- is en-dash, --- is em-dash|
|Dashes |`-- is en-dash, --- is em-dash`|-- is en-dash, --- is em-dash|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
A search domain service is a DSS plugin which allows to query some
domain specific search services. For example, a search service on a
database of nucleotide acid sequences. Currently only one search service
is supported: Searching of local BLAST databases for nucleotide and/or
protein sequences.
## Configuring a Service
To configure a service a
[core-plugin](/display/openBISDoc2010/Core+Plugins) of
type `search-domain-services` has to be created. The minimum
configuration for `plugin.properties` reads:
||Description|
|--- |--- |
|class|Fully qualified name of a Java class implementing ch.systemsx.cisd.openbis.dss.generic.shared.api.internal.v2.ISearchDomainService|
|label|The label. Can be used in user interfaces.|
## Querying a Service
Search domain services can be accessed via `IGeneralInformationService`.
The method `listAvailableSearchDomains` returns all available services.
A service can be queried by the method `searchOnSearchDomain`. Beside of
the `sessionToken` it has the following parameters:
- `preferredSearchDomainOrNull`: This can be `null` If there is only
one service configured. Otherwise the name of the core-plugin
specifies the preferred services. If no such service hasn't been
configured or it isn't be available the first available service will
be used. If there is no available service the search will return an
empty list.
- `searchString`: This is the string to search for.
- `optionalParametersOrNull`: This is a map of string-string key-value
pairs of optional parameters. Can be `null`. The semantics of these
parameters depends on the used service.
The method returns a list of `SearchDomainSearchResult` instances which
contain the following attributes: A description of the search domain
(class `SearchDomain`), the location
(interface `ISearchDomainResultLocation`), and a score. The result list
is sorted by score in descending order. The location has information
where the sequence is stored in openBIS and where it matches the search
string.
## Service Implementations
### BlastDatabase
**Description**: This implementations requires the
[BLAST+](http://blast.ncbi.nlm.nih.gov/Blast.cg) tools. The latest
versions can be downloaded from
[here](ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/LATEST/).
Note, that this service is only available if the BLAST+ tools have been
installed. Only the tools `blastn` (for nucleotide search) and `blastp`
(for protein search) are used.
In order to build up a local BLAST database the maintenance task
[BlastDatabaseCreationMaintenanceTask](/display/openBISDoc2010/Maintenance+Tasks#MaintenanceTasks-BlastDatabaseCreationMaintenanceTask)
has to be configured.
Because the maintenance task to create the BLAST databases runs often
only once per day a change in entity properties or a registration of a
data sets will not immediately be reflected by the search results. That
is, new sequences aren't found and changed/deleted sequences are still
found.
**Configuration**:
|Property Key|Description|
|--- |--- |
|blast-tools-directory|Path to the directory with BLAST+ command line tools. If defined it will be prepended to the commands blastn and blastp. If undefined it is assumed that the path is in the PATH environment variable.|
|blast-databases-folder|Path to the folder where all BLAST databases are stored. Default: <data store root>/blast-databases|
**Example**:
**plugin.properties**
class = ch.systemsx.cisd.openbis.dss.generic.server.api.v2.sequencedatabases.BlastDatabase
label = BLAST database
#### **Optional Query Parameters**
The following optional query parameters (i.e. service method
parameter `optionalParametersOrNull` as described above) are understood
and used as command line parameters of the BLAST+ tools:
|Name |Description |
|---------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|evalue |Defines the threshold of so-called "Expect Value" of found matches (for details see http://www.ncbi.nlm.nih.gov/blast/Blast.cgi?CMD=Web&PAGE_TYPE=BlastDocs&DOC_TYPE=FAQ#expect and http://homepages.ulb.ac.be/~dgonze/TEACHING/stat_scores.pdf). Higher values means more found matches. Default value is 10. |
|word_size|Word size for initial match. Decreasing word size results in increasing number of matches. Default values (if task parameter hasn't been specified): 11 for blastn and 3 for blastp. |
|task |Defines values for a set of parameters of the tools blastn and blastp. Possible values are <ul><li>blastn: Default value blastn</li></ul>|Value |Description |Default value of word_size|
|------------|---------------------------------------------------------------------------------------------------------|--------------------------|
|blastn-short|blastn program optimized for sequences shorter than 50 bases |7 |
|blastn |Traditional blastn requiring an exact match of 11 |11 |
|dc-megablast|Discontiguous megablast used to find more distant (e.g., interspecies) sequences |11 |
|megablast |Traditional megablast used to find very similar (e.g., intraspecies or closely related species) sequences|28 |<ul><li>blastp: Default value blastp</li></ul>|Value |Description |Default value of word_size|
|------------|-------------------------------------------------------------------|--------------------------|
|blastp |Traditional blastp to compare a protein query to a protein database|3 |
|blastp-short|blastp optimized for queries shorter than 30 residues |2 |
|ungapped |If specified (with an empty string value) only ungapped matches are returned. Will be ignored for blastp. |
For more details about these parameters see
<http://www.ncbi.nlm.nih.gov/books/NBK1763/>.
#### Search Results
A search result has either a `DataSetFileBlastSearchResultLocation` or
an `EntityPropertyBlastSearchResultLocation` instance depending on
whether the result has been found in a sequence of a FASTA or FASTQ file
of a data set or in a sequence stored as a property of an experiment, a
sample or a data set. In any case the following informations can be
retrieved for each match:
|BLAST output column|Access in Java |Description |
|-------------------|----------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|score |SearchDomainSearchResult.getScore().getScore() |=HYPERLINK("http://homepages.ulb.ac.be/~dgonze/TEACHING/stat_scores.pdf","Score. See http://homepages.ulb.ac.be/~dgonze/TEACHING/stat_scores.pdf for an explanation of score, bit-score and evalue.")|
|bitscore |SearchDomainSearchResult.getScore().getBitScore() | |
|evalue |SearchDomainSearchResult.getScore().getEvalue() | |
|sstart |SearchDomainSearchResult.getResultLocation().getAlignmentMatch().getSequenceStart() |Start of alignment in found sequence |
|send |SearchDomainSearchResult.getResultLocation().getAlignmentMatch().getSequenceEnd() |End of alignment in found sequence |
|qstart |SearchDomainSearchResult.getResultLocation().getAlignmentMatch().getQueryStart() |Start of alignment in search string. |
|qend |SearchDomainSearchResult.getResultLocation().getAlignmentMatch().getQueryEnd() |End of alignment in search string. |
|mismatch |SearchDomainSearchResult.getResultLocation().getAlignmentMatch().getNumberOfMismatches()|Number of mismatches. |
|gaps |SearchDomainSearchResult.getResultLocation().getAlignmentMatch().getTotalNumberOfGaps() |Total number of gap. |