-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
executable file
·453 lines (451 loc) · 22.8 KB
/
plugin.xml
File metadata and controls
executable file
·453 lines (451 loc) · 22.8 KB
1
2
3
4
5
6
7
8
9
10
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension point="org.eclipse.core.expressions.definitions">
<definition id="net.sf.ngsep.SingleVCFEnablement">
<with variable="activeMenuSelection">
<count value="1"/>
<iterate ifEmpty="false" operator="or">
<adapt type="org.eclipse.core.resources.IFile">
<or>
<test property="org.eclipse.core.resources.extension" value="vcf" />
<test property="org.eclipse.core.resources.extension" value="VCF" />
<test property="org.eclipse.core.resources.extension" value="gz" />
</or>
</adapt>
</iterate>
</with>
</definition>
<definition id="net.sf.ngsep.SingleBAMEnablement">
<with variable="activeMenuSelection">
<count value="1"/>
<iterate ifEmpty="false" operator="or">
<adapt type="org.eclipse.core.resources.IFile">
<or>
<test property="org.eclipse.core.resources.extension" value="bam" />
<test property="org.eclipse.core.resources.extension" value="BAM" />
</or>
</adapt>
</iterate>
</with>
</definition>
<definition id="net.sf.ngsep.SingleGFFEnablement">
<with variable="activeMenuSelection">
<count value="1"/>
<iterate ifEmpty="false" operator="or">
<adapt type="org.eclipse.core.resources.IFile">
<or>
<test property="org.eclipse.core.resources.extension" value="gff" />
<test property="org.eclipse.core.resources.extension" value="GFF" />
<test property="org.eclipse.core.resources.extension" value="gff3" />
<test property="org.eclipse.core.resources.extension" value="GFF3" />
</or>
</adapt>
</iterate>
</with>
</definition>
<definition id="net.sf.ngsep.FolderEnablement">
<with variable="activeMenuSelection">
<iterate ifEmpty="false" operator="or">
<adapt type="org.eclipse.core.resources.IFolder">
</adapt>
</iterate>
</with>
</definition>
<definition id="net.sf.ngsep.SingleFastaEnablement">
<with variable="activeMenuSelection">
<count value="1"/>
<iterate ifEmpty="false" operator="or">
<adapt type="org.eclipse.core.resources.IFile">
<or>
<test property="org.eclipse.core.resources.extension" value="fa" />
<test property="org.eclipse.core.resources.extension" value="fasta" />
<test property="org.eclipse.core.resources.extension" value="fna" />
<test property="org.eclipse.core.resources.extension" value="mfa" />
<test property="org.eclipse.core.resources.extension" value="FA" />
<test property="org.eclipse.core.resources.extension" value="FASTA" />
<test property="org.eclipse.core.resources.extension" value="FNA" />
<test property="org.eclipse.core.resources.extension" value="MFA" />
</or>
</adapt>
</iterate>
</with>
</definition>
<definition id="net.sf.ngsep.SingleTextFileEnablement">
<with variable="activeMenuSelection">
<count value="1"/>
<iterate ifEmpty="false" operator="or">
<adapt type="org.eclipse.core.resources.IFile">
<not>
<test property="org.eclipse.core.resources.extension" value="fa" />
</not>
<not>
<test property="org.eclipse.core.resources.extension" value="fasta" />
</not>
<not>
<test property="org.eclipse.core.resources.extension" value="fq" />
</not>
<not>
<test property="org.eclipse.core.resources.extension" value="fastq" />
</not>
<not>
<test property="org.eclipse.core.resources.extension" value="gz" />
</not>
<not>
<test property="org.eclipse.core.resources.extension" value="FA" />
</not>
<not>
<test property="org.eclipse.core.resources.extension" value="FASTA" />
</not>
<not>
<test property="org.eclipse.core.resources.extension" value="FQ" />
</not>
<not>
<test property="org.eclipse.core.resources.extension" value="FASTQ" />
</not>
<not>
<test property="org.eclipse.core.resources.extension" value="bam" />
</not>
<not>
<test property="org.eclipse.core.resources.extension" value="bai" />
</not>
<not>
<test property="org.eclipse.core.resources.extension" value="sam" />
</not>
<not>
<test property="org.eclipse.core.resources.extension" value="vcf" />
</not>
<not>
<test property="org.eclipse.core.resources.extension" value="log" />
</not>
<not>
<test property="org.eclipse.core.resources.extension" value="png" />
</not>
<not>
<test property="org.eclipse.core.resources.extension" value="ini" />
</not>
<not>
<test property="org.eclipse.core.resources.extension" value="properties" />
</not>
</adapt>
</iterate>
</with>
</definition>
</extension>
<extension point="org.eclipse.ui.menus">
<menuContribution locationURI="popup:org.eclipse.jdt.ui.PackageExplorer">
<menu id="NGSEP" label="NGSEP Menu">
<command commandId="net.sf.ngsep.view.MainIndexBowtie" label="Create Index Bowtie2" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleFastaEnablement"/>
</visibleWhen>
</command>
<command commandId="MapReads" label="Map Reads" style="push">
<visibleWhen checkEnabled="false">
<with variable="activeMenuSelection">
<or>
<count value="1"/>
<count value="2"/>
</or>
<iterate ifEmpty="false" operator="or">
<adapt type="org.eclipse.core.resources.IFile">
<or>
<test property="org.eclipse.core.resources.extension" value="fq" />
<test property="org.eclipse.core.resources.extension" value="fastq" />
<test property="org.eclipse.core.resources.extension" value="fa" />
<test property="org.eclipse.core.resources.extension" value="fasta" />
<test property="org.eclipse.core.resources.extension" value="txt" />
<test property="org.eclipse.core.resources.extension" value="fna" />
<test property="org.eclipse.core.resources.extension" value="mfa" />
<test property="org.eclipse.core.resources.extension" value="FQ" />
<test property="org.eclipse.core.resources.extension" value="FASTQ" />
<test property="org.eclipse.core.resources.extension" value="FA" />
<test property="org.eclipse.core.resources.extension" value="FASTA" />
<test property="org.eclipse.core.resources.extension" value="TXT" />
<test property="org.eclipse.core.resources.extension" value="FNA" />
<test property="org.eclipse.core.resources.extension" value="MFA" />
<test property="org.eclipse.core.resources.extension" value="gz" />
</or>
</adapt>
</iterate>
</with>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainSortAlignment" label="Sort Alignments" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleBAMEnablement"/>
</visibleWhen>
</command>
<command commandId="WizardSingleEnd" label="Wizard Single End" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.FolderEnablement"/>
</visibleWhen>
</command>
<command commandId="WizardPairedEnd" label="Wizard Paired End" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.FolderEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainMultiMapping" label="Multi Mapping Single End" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.FolderEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainMultiMappingPairedEnd" label="Multi Mapping Paired End" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.FolderEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainBasePairQualityStatistics" label="Calculate Quality Statistics" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleBAMEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainPlotQualityStatistics" label="Plot Quality Statistics" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleTextFileEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainCoverageStatisticsCalculator" label="Calculate Coverage Statistics" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleBAMEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainPlotCoverageStatistics" label="Plot Coverage Statistics" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleTextFileEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainRelativeAlleleCountsCalculator" label="Calculate Relative Allele Counts" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleBAMEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainVariantsDetector" label="Find Variants" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleBAMEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainMultiVariantsDetector" label="Multi Variants Detector" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.FolderEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainMergeVCF" label="Merge VCF" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.FolderEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainVCFFunctionalAnnotator" label="Variants Functional Annotation" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleVCFEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainVCFFilter" label="VCF Filter" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleVCFEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainVCFConverter" label="VCF Converter" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleVCFEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainVCFSummaryStatistics" label="VCF Summary Statistics" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleVCFEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainPlotVCFSummaryStatistics" label="Plot VCF Summary Statistics" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleTextFileEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainVCFDiversityCalculator" label="VCF Diversity Calculator" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleVCFEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainAlleleSharingStatistics" label="Allele Sharing Statistics" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleVCFEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainVCFComparator" label="VCF Comparator" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleVCFEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainImputeGenotype" label="Genotype imputation" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleVCFEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainVCFIntrogressionAnalysis" label="Introgression Analysis" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleVCFEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainReadsDemultiplex" label="Reads Demultiplex" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleTextFileEnablement"/>
</visibleWhen>
</command>
<command commandId="ReadDepthComparator" label="Read Depth Comparator" style="push">
<visibleWhen checkEnabled="false">
<with variable="activeMenuSelection">
<count value="2"/>
<iterate ifEmpty="false" operator="or">
<adapt type="org.eclipse.core.resources.IFile">
<or>
<test property="org.eclipse.core.resources.extension" value="bam" />
<test property="org.eclipse.core.resources.extension" value="BAM" />
</or>
</adapt>
</iterate>
</with>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainKmersCounter" label="Kmers Counter" style="push">
<visibleWhen checkEnabled="false">
<with variable="activeMenuSelection">
<count value="1"/>
<iterate ifEmpty="false" operator="or">
<adapt type="org.eclipse.core.resources.IFile">
<or>
<test property="org.eclipse.core.resources.extension" value="fq" />
<test property="org.eclipse.core.resources.extension" value="fastq" />
<test property="org.eclipse.core.resources.extension" value="fa" />
<test property="org.eclipse.core.resources.extension" value="fasta" />
<test property="org.eclipse.core.resources.extension" value="txt" />
<test property="org.eclipse.core.resources.extension" value="fna" />
<test property="org.eclipse.core.resources.extension" value="mfa" />
<test property="org.eclipse.core.resources.extension" value="FQ" />
<test property="org.eclipse.core.resources.extension" value="FASTQ" />
<test property="org.eclipse.core.resources.extension" value="FA" />
<test property="org.eclipse.core.resources.extension" value="FASTA" />
<test property="org.eclipse.core.resources.extension" value="TXT" />
<test property="org.eclipse.core.resources.extension" value="FNA" />
<test property="org.eclipse.core.resources.extension" value="MFA" />
<test property="org.eclipse.core.resources.extension" value="gz" />
</or>
</adapt>
</iterate>
</with>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainDistanceMatrixCalculator" label="Distance Matrix Calculator" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleVCFEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainNeighborJoining" label="Neighbor Joining Generator" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleTextFileEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainSingleIndividualSimulator" label="Single Individual Simulator" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleFastaEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainGenomesAligner" label="Genomes Aligner" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleFastaEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainVCFIndividualGenomeBuilder" label="Individual Genome Builder" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleVCFEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainVCFGoldStandardComparator" label="VCF Gold Standard Comparator" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleVCFEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainVCFVariantDensityCalculator" label="VCF Variant Density Calculator" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleVCFEnablement"/>
</visibleWhen>
</command>
<command commandId="net.sf.ngsep.view.MainTranscriptomeAnalyzer" label="Transcriptome Analizer" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleGFFEnablement"/>
</visibleWhen>
</command>
<!-- <command commandId="net.sf.ngsep.view.MainMutatedPeptidesExtractor" label="Mutated Peptides Extractor" style="push">
<visibleWhen checkEnabled="false">
<reference definitionId="net.sf.ngsep.SingleVCFEnablement"/>
</visibleWhen>
</command>
-->
</menu>
</menuContribution>
</extension>
<extension point="org.eclipse.ui.commands">
<command id="net.sf.ngsep.view.MainIndexBowtie" name="Create Index Bowtie2" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="MapReads" name="Map reads" defaultHandler="net.sf.ngsep.control.PlugMapRead"/>
<command id="net.sf.ngsep.view.MainSortAlignment" name="Sort Aligments" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="WizardSingleEnd" name="Wizard Single End" defaultHandler="net.sf.ngsep.control.PlugWizardSingleEndReads"/>
<command id="WizardPairedEnd" name="Wizard Paired End" defaultHandler="net.sf.ngsep.control.PlugWizardPairedEndReads"/>
<command id="net.sf.ngsep.view.MainMultiMapping" name="Multi Mapping Single End" defaultHandler="net.sf.ngsep.control.PlugMultipleFiles"/>
<command id="net.sf.ngsep.view.MainMultiMappingPairedEnd" name="Multi Mapping Paired End" defaultHandler="net.sf.ngsep.control.PlugMultipleFiles"/>
<command id="net.sf.ngsep.view.MainBasePairQualityStatistics" name="Calculate Basepair Quality Statistics" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainPlotQualityStatistics" name="Plot Quality Statistics" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainCoverageStatisticsCalculator" name="Calculate Coverage Statistics" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainPlotCoverageStatistics" name="Plot Coverage Statistics" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainRelativeAlleleCountsCalculator" name="Calculate Relative Allele Counts" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainVariantsDetector" name="Variants Detector" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainMultiVariantsDetector" name="Multi Variants Detector" defaultHandler="net.sf.ngsep.control.PlugMultipleFiles"/>
<command id="net.sf.ngsep.view.MainMergeVCF" name="Merge VCF" defaultHandler="net.sf.ngsep.control.PlugMultipleFiles"/>
<command id="net.sf.ngsep.view.MainVCFFunctionalAnnotator" name="Variants Functional Annotator" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainVCFFilter" name="VCF Filter" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainVCFConverter" name="VCF Converter" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainVCFSummaryStatistics" name="VCF Summary Statistics" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainPlotVCFSummaryStatistics" name="Plot VCF Summary Statistics" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainVCFDiversityCalculator" name="VCF Diversity Calculator" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainAlleleSharingStatistics" name="Allele Sharing Statistics" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainVCFComparator" name="VCF Comparator" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainImputeGenotype" name="Genotype imputation" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainVCFIntrogressionAnalysis" name="Introgression Analysis" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainReadsDemultiplex" name="Reads Demultiplex" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="ReadDepthComparator" name="Read Depth Comparator" defaultHandler="net.sf.ngsep.control.PlugCNVcompare"/>
<command id="net.sf.ngsep.view.MainKmersCounter" name="Kmers Counter" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainDistanceMatrixCalculator" name="Distance Matrix Calculator" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainNeighborJoining" name="Neighbor Joining Generation" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainSingleIndividualSimulator" name="Single Individual Simulator" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainGenomesAligner" name="Genomes Aligner" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainVCFIndividualGenomeBuilder" name="Individual Genome Builder" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainVCFGoldStandardComparator" name="VCF Gold Standard Comparator" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainVCFVariantDensityCalculator" name="VCF Variant Density Calculator" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<command id="net.sf.ngsep.view.MainTranscriptomeAnalyzer" name="Transcriptome Analizer" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
<!-- <command id="net.sf.ngsep.view.MainMutatedPeptidesExtractor" name="Mutated Peptides Extractor" defaultHandler="net.sf.ngsep.control.PlugSingleFile"/>
-->
</extension>
<extension point="org.eclipse.ui.views">
<view
name="NGSEPView"
icon="icons/ProgreesBarLogger.gif"
category="org.eclipse.ui"
class="org.eclipse.ui.ExtensionFactory:progressView"
id="org.eclipse.ui.views.ProgressViewProcess">
</view>
</extension>
<extension point="org.eclipse.ui.editors">
<editor class="net.sf.ngsep.view.SimpleSAMBrowseEditor"
default="true"
extensions="bam,sam"
icon="icons/sample.gif"
id="SimpleBAMBrowse"
name="Simple BAM Browse">
</editor>
<editor class="net.sf.ngsep.view.SimpleVCFBrowseEditor"
default="true"
extensions="vcf"
icon="icons/sample.gif"
id="SimpleVCFBrowse"
name="Simple VCF Browse">
</editor>
</extension>
</plugin>