sequenceserver 1.0.0.pre.5 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of sequenceserver might be problematic. Click here for more details.

Files changed (221) hide show
  1. checksums.yaml +4 -4
  2. data/.bootstrap/README.mkd +2 -0
  3. data/.bootstrap/config.json +416 -0
  4. data/.gitignore +56 -0
  5. data/.mailmap +5 -0
  6. data/.rspec +2 -0
  7. data/.rubocop.yml +51 -0
  8. data/.travis.yml +18 -0
  9. data/COPYRIGHT.txt +13 -0
  10. data/Gruntfile.js +133 -0
  11. data/LICENSE.txt +638 -46
  12. data/{LICENSE.Apache.txt → LICENSE/Apache.txt} +0 -0
  13. data/LICENSE/d3.txt +26 -0
  14. data/Rakefile +13 -0
  15. data/bin/sequenceserver +27 -4
  16. data/lib/sequenceserver.rb +26 -13
  17. data/lib/sequenceserver/database.rb +19 -8
  18. data/lib/sequenceserver/exceptions.rb +9 -1
  19. data/package.json +29 -0
  20. data/public/css/custom.css +10 -2
  21. data/public/dist/css/sequenceserver.min.css +1 -1
  22. data/public/dist/css/sequenceserver.min.css.gz +0 -0
  23. data/public/dist/js/sequenceserver.min.js +1 -1
  24. data/public/dist/js/sequenceserver.min.js.gz +0 -0
  25. data/public/js/jquery.t.js +2 -2
  26. data/public/js/sequence.js +4 -1
  27. data/public/js/sequenceserver.js +23 -20
  28. data/sequenceserver.gemspec +3 -6
  29. data/spec/blast_spec.rb +297 -0
  30. data/spec/capybara_spec.rb +51 -0
  31. data/spec/config_spec.rb +87 -0
  32. data/spec/database/funky_ids/funky_ids.fa +12 -0
  33. data/spec/database/funky_ids/funky_ids.fa.nhr +0 -0
  34. data/spec/database/funky_ids/funky_ids.fa.nin +0 -0
  35. data/spec/database/funky_ids/funky_ids.fa.nog +0 -0
  36. data/spec/database/funky_ids/funky_ids.fa.nsd +11 -0
  37. data/spec/database/funky_ids/funky_ids.fa.nsi +0 -0
  38. data/spec/database/funky_ids/funky_ids.fa.nsq +0 -0
  39. data/spec/database/sample/links.rb +23 -0
  40. data/spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta +6449 -0
  41. data/spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.phr +0 -0
  42. data/spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.pin +0 -0
  43. data/spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.pog +0 -0
  44. data/spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.psd +2378 -0
  45. data/spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.psi +0 -0
  46. data/spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.psq +0 -0
  47. data/spec/database/sample/si_uniprot_idmap.yml +14180 -0
  48. data/spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta +5486 -0
  49. data/spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nhr +0 -0
  50. data/spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nin +0 -0
  51. data/spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nog +0 -0
  52. data/spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nsd +946 -0
  53. data/spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nsi +0 -0
  54. data/spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nsq +0 -0
  55. data/spec/database/unformatted/Cardiocondyla_obscurior/Cobs1.4.proteins.fa +148303 -0
  56. data/spec/database/without_parse_seqids/without_parse_seqids.fa +10 -0
  57. data/spec/database/without_parse_seqids/without_parse_seqids.fa.phr +0 -0
  58. data/spec/database/without_parse_seqids/without_parse_seqids.fa.pin +0 -0
  59. data/spec/database/without_parse_seqids/without_parse_seqids.fa.psq +0 -0
  60. data/spec/database_spec.rb +129 -0
  61. data/spec/empty_config.yml +0 -0
  62. data/spec/routes_spec.rb +103 -0
  63. data/spec/sample.conf +2 -0
  64. data/spec/sample_reports/blastn_sample.asn +144 -0
  65. data/spec/sample_reports/blastp_sample.asn +1187 -0
  66. data/spec/sample_reports/blastx_sample.asn +1191 -0
  67. data/spec/sample_reports/no_hits_sample.asn +130 -0
  68. data/spec/sample_reports/tblastn_sample.asn +1107 -0
  69. data/spec/sample_reports/tblastx_sample.asn +2422 -0
  70. data/spec/sample_reports/with_hits_sample.asn +1489 -0
  71. data/spec/sequence_spec.rb +100 -0
  72. data/spec/sequenceserver_spec.rb +108 -0
  73. data/spec/spec_helper.rb +11 -0
  74. data/views/result.erb +55 -33
  75. data/views/search.erb +28 -23
  76. metadata +63 -151
  77. data/public/dist/js/webshims/shims/FlashCanvas/canvas2png.js +0 -1
  78. data/public/dist/js/webshims/shims/FlashCanvas/flashcanvas.js +0 -1
  79. data/public/dist/js/webshims/shims/FlashCanvas/flashcanvas.swf +0 -0
  80. data/public/dist/js/webshims/shims/FlashCanvasPro/canvas2png.js +0 -1
  81. data/public/dist/js/webshims/shims/FlashCanvasPro/flash10canvas.swf +0 -0
  82. data/public/dist/js/webshims/shims/FlashCanvasPro/flash9canvas.swf +0 -0
  83. data/public/dist/js/webshims/shims/FlashCanvasPro/flashcanvas.js +0 -1
  84. data/public/dist/js/webshims/shims/canvas-blob.js +0 -1
  85. data/public/dist/js/webshims/shims/color-picker.js +0 -2
  86. data/public/dist/js/webshims/shims/combos/1.js +0 -6
  87. data/public/dist/js/webshims/shims/combos/10.js +0 -2
  88. data/public/dist/js/webshims/shims/combos/11.js +0 -2
  89. data/public/dist/js/webshims/shims/combos/12.js +0 -6
  90. data/public/dist/js/webshims/shims/combos/13.js +0 -1
  91. data/public/dist/js/webshims/shims/combos/14.js +0 -1
  92. data/public/dist/js/webshims/shims/combos/15.js +0 -2
  93. data/public/dist/js/webshims/shims/combos/16.js +0 -7
  94. data/public/dist/js/webshims/shims/combos/17.js +0 -2
  95. data/public/dist/js/webshims/shims/combos/18.js +0 -3
  96. data/public/dist/js/webshims/shims/combos/2.js +0 -7
  97. data/public/dist/js/webshims/shims/combos/21.js +0 -2
  98. data/public/dist/js/webshims/shims/combos/22.js +0 -1
  99. data/public/dist/js/webshims/shims/combos/23.js +0 -6
  100. data/public/dist/js/webshims/shims/combos/25.js +0 -2
  101. data/public/dist/js/webshims/shims/combos/27.js +0 -1
  102. data/public/dist/js/webshims/shims/combos/28.js +0 -1
  103. data/public/dist/js/webshims/shims/combos/29.js +0 -1
  104. data/public/dist/js/webshims/shims/combos/3.js +0 -1
  105. data/public/dist/js/webshims/shims/combos/30.js +0 -2
  106. data/public/dist/js/webshims/shims/combos/31.js +0 -1
  107. data/public/dist/js/webshims/shims/combos/33.js +0 -1
  108. data/public/dist/js/webshims/shims/combos/34.js +0 -1
  109. data/public/dist/js/webshims/shims/combos/4.js +0 -1
  110. data/public/dist/js/webshims/shims/combos/5.js +0 -2
  111. data/public/dist/js/webshims/shims/combos/6.js +0 -2
  112. data/public/dist/js/webshims/shims/combos/7.js +0 -7
  113. data/public/dist/js/webshims/shims/combos/8.js +0 -7
  114. data/public/dist/js/webshims/shims/combos/9.js +0 -2
  115. data/public/dist/js/webshims/shims/combos/97.js +0 -1
  116. data/public/dist/js/webshims/shims/combos/98.js +0 -1
  117. data/public/dist/js/webshims/shims/combos/99.js +0 -1
  118. data/public/dist/js/webshims/shims/details.js +0 -1
  119. data/public/dist/js/webshims/shims/dom-extend.js +0 -1
  120. data/public/dist/js/webshims/shims/es5.js +0 -1
  121. data/public/dist/js/webshims/shims/es6.js +0 -1
  122. data/public/dist/js/webshims/shims/excanvas.js +0 -1
  123. data/public/dist/js/webshims/shims/filereader-xhr.js +0 -1
  124. data/public/dist/js/webshims/shims/form-combat.js +0 -1
  125. data/public/dist/js/webshims/shims/form-core.js +0 -1
  126. data/public/dist/js/webshims/shims/form-datalist-lazy.js +0 -1
  127. data/public/dist/js/webshims/shims/form-datalist.js +0 -1
  128. data/public/dist/js/webshims/shims/form-fixrangechange.js +0 -1
  129. data/public/dist/js/webshims/shims/form-inputmode.js +0 -1
  130. data/public/dist/js/webshims/shims/form-message.js +0 -1
  131. data/public/dist/js/webshims/shims/form-native-extend.js +0 -1
  132. data/public/dist/js/webshims/shims/form-number-date-api.js +0 -1
  133. data/public/dist/js/webshims/shims/form-number-date-ui.js +0 -1
  134. data/public/dist/js/webshims/shims/form-shim-extend.js +0 -1
  135. data/public/dist/js/webshims/shims/form-shim-extend2.js +0 -1
  136. data/public/dist/js/webshims/shims/form-validation.js +0 -1
  137. data/public/dist/js/webshims/shims/form-validators.js +0 -1
  138. data/public/dist/js/webshims/shims/forms-picker.js +0 -1
  139. data/public/dist/js/webshims/shims/geolocation.js +0 -1
  140. data/public/dist/js/webshims/shims/i18n/formcfg-ar.js +0 -1
  141. data/public/dist/js/webshims/shims/i18n/formcfg-ch-CN.js +0 -1
  142. data/public/dist/js/webshims/shims/i18n/formcfg-cs.js +0 -1
  143. data/public/dist/js/webshims/shims/i18n/formcfg-de.js +0 -1
  144. data/public/dist/js/webshims/shims/i18n/formcfg-el.js +0 -1
  145. data/public/dist/js/webshims/shims/i18n/formcfg-en.js +0 -1
  146. data/public/dist/js/webshims/shims/i18n/formcfg-es.js +0 -1
  147. data/public/dist/js/webshims/shims/i18n/formcfg-fa.js +0 -1
  148. data/public/dist/js/webshims/shims/i18n/formcfg-fr.js +0 -1
  149. data/public/dist/js/webshims/shims/i18n/formcfg-he.js +0 -1
  150. data/public/dist/js/webshims/shims/i18n/formcfg-hi.js +0 -1
  151. data/public/dist/js/webshims/shims/i18n/formcfg-hu.js +0 -1
  152. data/public/dist/js/webshims/shims/i18n/formcfg-it.js +0 -1
  153. data/public/dist/js/webshims/shims/i18n/formcfg-ja.js +0 -1
  154. data/public/dist/js/webshims/shims/i18n/formcfg-lt.js +0 -1
  155. data/public/dist/js/webshims/shims/i18n/formcfg-nl.js +0 -1
  156. data/public/dist/js/webshims/shims/i18n/formcfg-pl.js +0 -1
  157. data/public/dist/js/webshims/shims/i18n/formcfg-pt-BR.js +0 -1
  158. data/public/dist/js/webshims/shims/i18n/formcfg-pt-PT.js +0 -1
  159. data/public/dist/js/webshims/shims/i18n/formcfg-pt.js +0 -1
  160. data/public/dist/js/webshims/shims/i18n/formcfg-ru.js +0 -1
  161. data/public/dist/js/webshims/shims/i18n/formcfg-sv.js +0 -1
  162. data/public/dist/js/webshims/shims/i18n/formcfg-zh-CN.js +0 -1
  163. data/public/dist/js/webshims/shims/i18n/formcfg-zh-TW.js +0 -1
  164. data/public/dist/js/webshims/shims/jme/alternate-media.js +0 -1
  165. data/public/dist/js/webshims/shims/jme/base.js +0 -1
  166. data/public/dist/js/webshims/shims/jme/controls.css +0 -1
  167. data/public/dist/js/webshims/shims/jme/jme.eot +0 -0
  168. data/public/dist/js/webshims/shims/jme/jme.svg +0 -36
  169. data/public/dist/js/webshims/shims/jme/jme.ttf +0 -0
  170. data/public/dist/js/webshims/shims/jme/jme.woff +0 -0
  171. data/public/dist/js/webshims/shims/jme/mediacontrols-lazy.js +0 -1
  172. data/public/dist/js/webshims/shims/jme/mediacontrols.js +0 -1
  173. data/public/dist/js/webshims/shims/jme/playlist.js +0 -1
  174. data/public/dist/js/webshims/shims/jpicker/images/AlphaBar.png +0 -0
  175. data/public/dist/js/webshims/shims/jpicker/images/Bars.png +0 -0
  176. data/public/dist/js/webshims/shims/jpicker/images/Maps.png +0 -0
  177. data/public/dist/js/webshims/shims/jpicker/images/NoColor.png +0 -0
  178. data/public/dist/js/webshims/shims/jpicker/images/bar-opacity.png +0 -0
  179. data/public/dist/js/webshims/shims/jpicker/images/map-opacity.png +0 -0
  180. data/public/dist/js/webshims/shims/jpicker/images/mappoint.gif +0 -0
  181. data/public/dist/js/webshims/shims/jpicker/images/picker.gif +0 -0
  182. data/public/dist/js/webshims/shims/jpicker/images/preview-opacity.png +0 -0
  183. data/public/dist/js/webshims/shims/jpicker/images/rangearrows.gif +0 -0
  184. data/public/dist/js/webshims/shims/jpicker/jpicker.css +0 -1
  185. data/public/dist/js/webshims/shims/matchMedia.js +0 -3
  186. data/public/dist/js/webshims/shims/mediacapture-picker.js +0 -1
  187. data/public/dist/js/webshims/shims/mediacapture.js +0 -1
  188. data/public/dist/js/webshims/shims/mediaelement-core.js +0 -1
  189. data/public/dist/js/webshims/shims/mediaelement-debug.js +0 -1
  190. data/public/dist/js/webshims/shims/mediaelement-jaris.js +0 -1
  191. data/public/dist/js/webshims/shims/mediaelement-native-fix.js +0 -1
  192. data/public/dist/js/webshims/shims/mediaelement-yt.js +0 -1
  193. data/public/dist/js/webshims/shims/moxie/flash/Moxie.cdn.swf +0 -0
  194. data/public/dist/js/webshims/shims/moxie/flash/Moxie.min.swf +0 -0
  195. data/public/dist/js/webshims/shims/moxie/js/moxie-html4.js +0 -3
  196. data/public/dist/js/webshims/shims/moxie/js/moxie-swf.js +0 -2
  197. data/public/dist/js/webshims/shims/picture.js +0 -1
  198. data/public/dist/js/webshims/shims/plugins/jquery.ui.position.js +0 -11
  199. data/public/dist/js/webshims/shims/range-ui.js +0 -1
  200. data/public/dist/js/webshims/shims/sizzle.js +0 -11
  201. data/public/dist/js/webshims/shims/sticky.js +0 -1
  202. data/public/dist/js/webshims/shims/styles/color-picker.png +0 -0
  203. data/public/dist/js/webshims/shims/styles/forms-ext.css +0 -1
  204. data/public/dist/js/webshims/shims/styles/forms-picker.css +0 -1
  205. data/public/dist/js/webshims/shims/styles/progress.gif +0 -0
  206. data/public/dist/js/webshims/shims/styles/progress.png +0 -0
  207. data/public/dist/js/webshims/shims/styles/shim-ext.css +0 -1
  208. data/public/dist/js/webshims/shims/styles/shim.css +0 -1
  209. data/public/dist/js/webshims/shims/styles/transparent.png +0 -0
  210. data/public/dist/js/webshims/shims/styles/widget.eot +0 -0
  211. data/public/dist/js/webshims/shims/styles/widget.svg +0 -12
  212. data/public/dist/js/webshims/shims/styles/widget.ttf +0 -0
  213. data/public/dist/js/webshims/shims/styles/widget.woff +0 -0
  214. data/public/dist/js/webshims/shims/swf/JarisFLVPlayer.swf +0 -0
  215. data/public/dist/js/webshims/shims/swfmini-embed.js +0 -1
  216. data/public/dist/js/webshims/shims/swfmini.js +0 -6
  217. data/public/dist/js/webshims/shims/track-ui.js +0 -1
  218. data/public/dist/js/webshims/shims/track.js +0 -1
  219. data/public/dist/js/webshims/shims/url.js +0 -1
  220. data/public/dist/js/webshims/shims/usermedia-core.js +0 -1
  221. data/public/dist/js/webshims/shims/usermedia-shim.js +0 -1
@@ -0,0 +1,130 @@
1
+ Blast4-archive ::= {
2
+ request {
3
+ ident "2.2.30+",
4
+ body queue-search {
5
+ program "blastn",
6
+ service "plain",
7
+ queries bioseq-set {
8
+ seq-set {
9
+ seq {
10
+ id {
11
+ local str "Query_1"
12
+ },
13
+ descr {
14
+ user {
15
+ type str "CFastaReader",
16
+ data {
17
+ {
18
+ label str "DefLine",
19
+ data str ">"
20
+ }
21
+ }
22
+ }
23
+ },
24
+ inst {
25
+ repr raw,
26
+ mol na,
27
+ length 32,
28
+ seq-data ncbi2na '39C9155555555555'H
29
+ }
30
+ }
31
+ }
32
+ },
33
+ subject database "spec/database/sample/transcripts/Solenopsis_invicta/Si
34
+ nvicta2-2-3.cdna.subset.fasta",
35
+ algorithm-options {
36
+ {
37
+ name "EvalueThreshold",
38
+ value cutoff e-value { 1, 10, 1 }
39
+ },
40
+ {
41
+ name "MaskAtHash",
42
+ value boolean TRUE
43
+ },
44
+ {
45
+ name "DustFilteringLevel",
46
+ value integer 20
47
+ },
48
+ {
49
+ name "DustFilteringWindow",
50
+ value integer 64
51
+ },
52
+ {
53
+ name "DustFilteringLinker",
54
+ value integer 1
55
+ },
56
+ {
57
+ name "UngappedMode",
58
+ value boolean FALSE
59
+ },
60
+ {
61
+ name "HitlistSize",
62
+ value integer 500
63
+ },
64
+ {
65
+ name "EffectiveSearchSpace",
66
+ value big-integer 4482944
67
+ }
68
+ },
69
+ program-options {
70
+ {
71
+ name "LCaseMask",
72
+ value query-mask {
73
+ locations {
74
+ packed-int {
75
+ {
76
+ from 9,
77
+ to 31,
78
+ id local str "Query_1"
79
+ },
80
+ {
81
+ from 9,
82
+ to 31,
83
+ id local str "Query_1"
84
+ }
85
+ }
86
+ },
87
+ frame plus1
88
+ }
89
+ }
90
+ }
91
+ }
92
+ },
93
+ results {
94
+ alignments {
95
+ },
96
+ masks {
97
+ {
98
+ locations {
99
+ packed-int {
100
+ {
101
+ from 9,
102
+ to 31,
103
+ id local str "Query_1"
104
+ }
105
+ }
106
+ },
107
+ frame plus1
108
+ }
109
+ },
110
+ ka-blocks {
111
+ {
112
+ lambda { 633731443099174, 10, -15 },
113
+ k { 408145662544724, 10, -15 },
114
+ h { 91243839227971, 10, -14 },
115
+ gapped FALSE
116
+ },
117
+ {
118
+ lambda { 625, 10, -3 },
119
+ k { 41, 10, -2 },
120
+ h { 78, 10, -2 },
121
+ gapped TRUE
122
+ }
123
+ },
124
+ search-stats {
125
+ "Effective search space: 4482944",
126
+ "Effective search space used: 4482944",
127
+ "Length adjustment: 16"
128
+ }
129
+ }
130
+ }
@@ -0,0 +1,1107 @@
1
+ Blast4-archive ::= {
2
+ request {
3
+ ident "2.2.30+",
4
+ body queue-search {
5
+ program "tblastn",
6
+ service "plain",
7
+ queries bioseq-set {
8
+ seq-set {
9
+ seq {
10
+ id {
11
+ local str "Query_1"
12
+ },
13
+ descr {
14
+ user {
15
+ type str "CFastaReader",
16
+ data {
17
+ {
18
+ label str "DefLine",
19
+ data str ">SI2.2.0_06267
20
+ locus=Si_gnF.scaffold02592[1282609..1284114].pep_2 quality=100.00"
21
+ }
22
+ }
23
+ },
24
+ title "SI2.2.0_06267
25
+ locus=Si_gnF.scaffold02592[1282609..1284114].pep_2 quality=100.00"
26
+ },
27
+ inst {
28
+ repr raw,
29
+ mol aa,
30
+ length 199,
31
+ seq-data ncbieaa "MNTLWLSLWDYPGKLPLNFMVFDTKDDLQAAYWRDPYSIPLAVIFE
32
+ DPQPISQRLIYEIRTNPSYTLPPPPTKLYSAPISCRKNKTGHWMDDILSIKTGESCPVNNYLHSGFLALQMITDITKI
33
+ KLENSDVTIPDIKLIMFPKEPYTADWMLAFRVVIPLYMVLALSQFITYLLILIVGEKENKIKEGMKMMGLNDSVF"
34
+ }
35
+ },
36
+ seq {
37
+ id {
38
+ local str "Query_2"
39
+ },
40
+ descr {
41
+ user {
42
+ type str "CFastaReader",
43
+ data {
44
+ {
45
+ label str "DefLine",
46
+ data str ">SI2.2.0_13722
47
+ locus=Si_gnF.scaffold06207[1925625..1928536].pep_1 quality=100.00"
48
+ }
49
+ }
50
+ },
51
+ title "SI2.2.0_13722
52
+ locus=Si_gnF.scaffold06207[1925625..1928536].pep_1 quality=100.00"
53
+ },
54
+ inst {
55
+ repr raw,
56
+ mol aa,
57
+ length 186,
58
+ seq-data ncbieaa "MSANRLNVLVTLMLAVALLVTESGNAQVDGYLQFNPKRSAVSSPQK
59
+ YCGKKLSNALQIICDGVYNSMFKKSGQDFPPQNKRHIAHRINGNEEESFTTLKSNFLNWCVEVYHRHYRFVFVSEMEM
60
+ ADYPLAYDISPYLPPFLSRARARGMLDGRFAGRRYRRESRGIHEECCINGCTINELTSYCGP"
61
+ }
62
+ }
63
+ }
64
+ },
65
+ subject database "spec/database/sample/transcripts/Solenopsis_invicta/Si
66
+ nvicta2-2-3.cdna.subset.fasta",
67
+ algorithm-options {
68
+ {
69
+ name "EvalueThreshold",
70
+ value cutoff e-value { 1, 10, 1 }
71
+ },
72
+ {
73
+ name "DbGeneticCode",
74
+ value integer 1
75
+ },
76
+ {
77
+ name "UngappedMode",
78
+ value boolean FALSE
79
+ },
80
+ {
81
+ name "LongestIntronLength",
82
+ value integer 0
83
+ },
84
+ {
85
+ name "MaskAtHash",
86
+ value boolean FALSE
87
+ },
88
+ {
89
+ name "SegFilteringWindow",
90
+ value integer 12
91
+ },
92
+ {
93
+ name "SegFilteringLocut",
94
+ value real { 22, 10, -1 }
95
+ },
96
+ {
97
+ name "SegFilteringHicut",
98
+ value real { 25, 10, -1 }
99
+ },
100
+ {
101
+ name "WordThreshold",
102
+ value integer 13
103
+ },
104
+ {
105
+ name "WindowSize",
106
+ value integer 40
107
+ },
108
+ {
109
+ name "HitlistSize",
110
+ value integer 500
111
+ },
112
+ {
113
+ name "CompositionBasedStats",
114
+ value integer 2
115
+ },
116
+ {
117
+ name "SmithWatermanMode",
118
+ value boolean FALSE
119
+ },
120
+ {
121
+ name "EffectiveSearchSpace",
122
+ value big-integer 9254832
123
+ }
124
+ }
125
+ }
126
+ },
127
+ results {
128
+ alignments {
129
+ {
130
+ type partial,
131
+ dim 2,
132
+ score {
133
+ {
134
+ id str "score",
135
+ value int 1046
136
+ },
137
+ {
138
+ id str "e_value",
139
+ value real { 991472001167032, 10, -162 }
140
+ },
141
+ {
142
+ id str "bit_score",
143
+ value real { 407526988689595, 10, -12 }
144
+ },
145
+ {
146
+ id str "num_ident",
147
+ value int 199
148
+ },
149
+ {
150
+ id str "comp_adjustment_method",
151
+ value int 2
152
+ },
153
+ {
154
+ id str "num_positives",
155
+ value int 199
156
+ },
157
+ {
158
+ id str "hsp_percent_coverage",
159
+ value real { 1, 10, 2 }
160
+ }
161
+ },
162
+ segs std {
163
+ {
164
+ dim 2,
165
+ ids {
166
+ local str "Query_1",
167
+ local str "SI2.2.0_06267"
168
+ },
169
+ loc {
170
+ int {
171
+ from 0,
172
+ to 198,
173
+ strand unknown,
174
+ id local str "Query_1"
175
+ },
176
+ int {
177
+ from 0,
178
+ to 596,
179
+ strand plus,
180
+ id local str "SI2.2.0_06267"
181
+ }
182
+ }
183
+ }
184
+ }
185
+ },
186
+ {
187
+ type partial,
188
+ dim 2,
189
+ score {
190
+ {
191
+ id str "score",
192
+ value int 46
193
+ },
194
+ {
195
+ id str "e_value",
196
+ value real { 158151944731805, 10, -14 }
197
+ },
198
+ {
199
+ id str "bit_score",
200
+ value real { 223274127722423, 10, -13 }
201
+ },
202
+ {
203
+ id str "num_ident",
204
+ value int 9
205
+ },
206
+ {
207
+ id str "comp_adjustment_method",
208
+ value int 2
209
+ },
210
+ {
211
+ id str "num_positives",
212
+ value int 15
213
+ },
214
+ {
215
+ id str "hsp_percent_coverage",
216
+ value real { 135653266331658, 10, -13 }
217
+ }
218
+ },
219
+ segs std {
220
+ {
221
+ dim 2,
222
+ ids {
223
+ local str "Query_1",
224
+ local str "SI2.2.0_06904"
225
+ },
226
+ loc {
227
+ int {
228
+ from 31,
229
+ to 56,
230
+ strand unknown,
231
+ id local str "Query_1"
232
+ },
233
+ int {
234
+ from 117,
235
+ to 194,
236
+ strand plus,
237
+ id local str "SI2.2.0_06904"
238
+ }
239
+ }
240
+ }
241
+ }
242
+ },
243
+ {
244
+ type partial,
245
+ dim 2,
246
+ score {
247
+ {
248
+ id str "score",
249
+ value int 44
250
+ },
251
+ {
252
+ id str "e_value",
253
+ value real { 264755365382425, 10, -14 }
254
+ },
255
+ {
256
+ id str "bit_score",
257
+ value real { 215570136204075, 10, -13 }
258
+ },
259
+ {
260
+ id str "num_ident",
261
+ value int 8
262
+ },
263
+ {
264
+ id str "comp_adjustment_method",
265
+ value int 2
266
+ },
267
+ {
268
+ id str "num_positives",
269
+ value int 13
270
+ },
271
+ {
272
+ id str "hsp_percent_coverage",
273
+ value real { 803768844221105, 10, -14 }
274
+ }
275
+ },
276
+ segs std {
277
+ {
278
+ dim 2,
279
+ ids {
280
+ local str "Query_1",
281
+ local str "SI2.2.0_03432"
282
+ },
283
+ loc {
284
+ int {
285
+ from 50,
286
+ to 64,
287
+ strand unknown,
288
+ id local str "Query_1"
289
+ },
290
+ int {
291
+ from 37,
292
+ to 81,
293
+ strand plus,
294
+ id local str "SI2.2.0_03432"
295
+ }
296
+ }
297
+ }
298
+ }
299
+ },
300
+ {
301
+ type partial,
302
+ dim 2,
303
+ score {
304
+ {
305
+ id str "score",
306
+ value int 42
307
+ },
308
+ {
309
+ id str "e_value",
310
+ value real { 738402284079177, 10, -14 }
311
+ },
312
+ {
313
+ id str "bit_score",
314
+ value real { 207866144685728, 10, -13 }
315
+ },
316
+ {
317
+ id str "num_ident",
318
+ value int 8
319
+ },
320
+ {
321
+ id str "comp_adjustment_method",
322
+ value int 2
323
+ },
324
+ {
325
+ id str "num_positives",
326
+ value int 11
327
+ },
328
+ {
329
+ id str "hsp_percent_coverage",
330
+ value real { 100477386934673, 10, -13 }
331
+ }
332
+ },
333
+ segs std {
334
+ {
335
+ dim 2,
336
+ ids {
337
+ local str "Query_1",
338
+ local str "SI2.2.0_05280"
339
+ },
340
+ loc {
341
+ int {
342
+ from 69,
343
+ to 87,
344
+ strand unknown,
345
+ id local str "Query_1"
346
+ },
347
+ int {
348
+ from 52,
349
+ to 108,
350
+ strand minus,
351
+ id local str "SI2.2.0_05280"
352
+ }
353
+ }
354
+ }
355
+ }
356
+ },
357
+ {
358
+ type partial,
359
+ dim 2,
360
+ score {
361
+ {
362
+ id str "score",
363
+ value int 917
364
+ },
365
+ {
366
+ id str "e_value",
367
+ value real { 163109526812422, 10, -142 }
368
+ },
369
+ {
370
+ id str "bit_score",
371
+ value real { 357836243396257, 10, -12 }
372
+ },
373
+ {
374
+ id str "num_ident",
375
+ value int 170
376
+ },
377
+ {
378
+ id str "comp_adjustment_method",
379
+ value int 2
380
+ },
381
+ {
382
+ id str "num_positives",
383
+ value int 170
384
+ },
385
+ {
386
+ id str "hsp_percent_coverage",
387
+ value real { 1, 10, 2 }
388
+ }
389
+ },
390
+ segs std {
391
+ {
392
+ dim 2,
393
+ ids {
394
+ local str "Query_2",
395
+ local str "SI2.2.0_13722"
396
+ },
397
+ loc {
398
+ int {
399
+ from 0,
400
+ to 185,
401
+ strand unknown,
402
+ id local str "Query_2"
403
+ },
404
+ int {
405
+ from 0,
406
+ to 557,
407
+ strand plus,
408
+ id local str "SI2.2.0_13722"
409
+ }
410
+ }
411
+ }
412
+ }
413
+ },
414
+ {
415
+ type partial,
416
+ dim 2,
417
+ score {
418
+ {
419
+ id str "score",
420
+ value int 70
421
+ },
422
+ {
423
+ id str "e_value",
424
+ value real { 973505195823272, 10, -18 }
425
+ },
426
+ {
427
+ id str "bit_score",
428
+ value real { 315722025942587, 10, -13 }
429
+ },
430
+ {
431
+ id str "num_ident",
432
+ value int 20
433
+ },
434
+ {
435
+ id str "comp_adjustment_method",
436
+ value int 2
437
+ },
438
+ {
439
+ id str "num_positives",
440
+ value int 27
441
+ },
442
+ {
443
+ id str "hsp_percent_coverage",
444
+ value real { 241559139784946, 10, -13 }
445
+ }
446
+ },
447
+ segs std {
448
+ {
449
+ dim 2,
450
+ ids {
451
+ local str "Query_2",
452
+ local str "SI2.2.0_13149"
453
+ },
454
+ loc {
455
+ int {
456
+ from 32,
457
+ to 42,
458
+ strand unknown,
459
+ id local str "Query_2"
460
+ },
461
+ int {
462
+ from 87,
463
+ to 119,
464
+ strand plus,
465
+ id local str "SI2.2.0_13149"
466
+ }
467
+ }
468
+ },
469
+ {
470
+ dim 2,
471
+ ids {
472
+ local str "Query_2",
473
+ local str "SI2.2.0_13149"
474
+ },
475
+ loc {
476
+ int {
477
+ from 43,
478
+ to 43,
479
+ strand unknown,
480
+ id local str "Query_2"
481
+ },
482
+ empty local str "SI2.2.0_13149"
483
+ }
484
+ },
485
+ {
486
+ dim 2,
487
+ ids {
488
+ local str "Query_2",
489
+ local str "SI2.2.0_13149"
490
+ },
491
+ loc {
492
+ int {
493
+ from 44,
494
+ to 59,
495
+ strand unknown,
496
+ id local str "Query_2"
497
+ },
498
+ int {
499
+ from 120,
500
+ to 167,
501
+ strand plus,
502
+ id local str "SI2.2.0_13149"
503
+ }
504
+ }
505
+ },
506
+ {
507
+ dim 2,
508
+ ids {
509
+ local str "Query_2",
510
+ local str "SI2.2.0_13149"
511
+ },
512
+ loc {
513
+ empty local str "Query_2",
514
+ int {
515
+ from 168,
516
+ to 170,
517
+ strand plus,
518
+ id local str "SI2.2.0_13149"
519
+ }
520
+ }
521
+ },
522
+ {
523
+ dim 2,
524
+ ids {
525
+ local str "Query_2",
526
+ local str "SI2.2.0_13149"
527
+ },
528
+ loc {
529
+ int {
530
+ from 60,
531
+ to 75,
532
+ strand unknown,
533
+ id local str "Query_2"
534
+ },
535
+ int {
536
+ from 171,
537
+ to 218,
538
+ strand plus,
539
+ id local str "SI2.2.0_13149"
540
+ }
541
+ }
542
+ }
543
+ }
544
+ },
545
+ {
546
+ type partial,
547
+ dim 2,
548
+ score {
549
+ {
550
+ id str "score",
551
+ value int 64
552
+ },
553
+ {
554
+ id str "e_value",
555
+ value real { 591430689703162, 10, -17 }
556
+ },
557
+ {
558
+ id str "bit_score",
559
+ value real { 292610051387546, 10, -13 }
560
+ },
561
+ {
562
+ id str "num_ident",
563
+ value int 10
564
+ },
565
+ {
566
+ id str "comp_adjustment_method",
567
+ value int 2
568
+ },
569
+ {
570
+ id str "num_positives",
571
+ value int 15
572
+ },
573
+ {
574
+ id str "hsp_percent_coverage",
575
+ value real { 123279569892473, 10, -13 }
576
+ }
577
+ },
578
+ segs std {
579
+ {
580
+ dim 2,
581
+ ids {
582
+ local str "Query_2",
583
+ local str "SI2.2.0_13149"
584
+ },
585
+ loc {
586
+ int {
587
+ from 164,
588
+ to 185,
589
+ strand unknown,
590
+ id local str "Query_2"
591
+ },
592
+ int {
593
+ from 237,
594
+ to 302,
595
+ strand plus,
596
+ id local str "SI2.2.0_13149"
597
+ }
598
+ }
599
+ }
600
+ }
601
+ },
602
+ {
603
+ type partial,
604
+ dim 2,
605
+ score {
606
+ {
607
+ id str "score",
608
+ value int 48
609
+ },
610
+ {
611
+ id str "e_value",
612
+ value real { 489490109366324, 10, -15 }
613
+ },
614
+ {
615
+ id str "bit_score",
616
+ value real { 23097811924077, 10, -12 }
617
+ },
618
+ {
619
+ id str "num_ident",
620
+ value int 13
621
+ },
622
+ {
623
+ id str "comp_adjustment_method",
624
+ value int 2
625
+ },
626
+ {
627
+ id str "num_positives",
628
+ value int 17
629
+ },
630
+ {
631
+ id str "hsp_percent_coverage",
632
+ value real { 160913978494624, 10, -13 }
633
+ }
634
+ },
635
+ segs std {
636
+ {
637
+ dim 2,
638
+ ids {
639
+ local str "Query_2",
640
+ local str "SI2.2.0_09379"
641
+ },
642
+ loc {
643
+ int {
644
+ from 58,
645
+ to 72,
646
+ strand unknown,
647
+ id local str "Query_2"
648
+ },
649
+ int {
650
+ from 103,
651
+ to 147,
652
+ strand minus,
653
+ id local str "SI2.2.0_09379"
654
+ }
655
+ }
656
+ },
657
+ {
658
+ dim 2,
659
+ ids {
660
+ local str "Query_2",
661
+ local str "SI2.2.0_09379"
662
+ },
663
+ loc {
664
+ int {
665
+ from 73,
666
+ to 73,
667
+ strand unknown,
668
+ id local str "Query_2"
669
+ },
670
+ empty local str "SI2.2.0_09379"
671
+ }
672
+ },
673
+ {
674
+ dim 2,
675
+ ids {
676
+ local str "Query_2",
677
+ local str "SI2.2.0_09379"
678
+ },
679
+ loc {
680
+ int {
681
+ from 74,
682
+ to 86,
683
+ strand unknown,
684
+ id local str "Query_2"
685
+ },
686
+ int {
687
+ from 64,
688
+ to 102,
689
+ strand minus,
690
+ id local str "SI2.2.0_09379"
691
+ }
692
+ }
693
+ }
694
+ }
695
+ },
696
+ {
697
+ type partial,
698
+ dim 2,
699
+ score {
700
+ {
701
+ id str "score",
702
+ value int 45
703
+ },
704
+ {
705
+ id str "e_value",
706
+ value real { 724328385986037, 10, -15 }
707
+ },
708
+ {
709
+ id str "bit_score",
710
+ value real { 219422131963249, 10, -13 }
711
+ },
712
+ {
713
+ id str "num_ident",
714
+ value int 7
715
+ },
716
+ {
717
+ id str "comp_adjustment_method",
718
+ value int 1
719
+ },
720
+ {
721
+ id str "num_positives",
722
+ value int 14
723
+ },
724
+ {
725
+ id str "hsp_percent_coverage",
726
+ value real { 117903225806452, 10, -13 }
727
+ }
728
+ },
729
+ segs std {
730
+ {
731
+ dim 2,
732
+ ids {
733
+ local str "Query_2",
734
+ local str "SI2.2.0_02019"
735
+ },
736
+ loc {
737
+ int {
738
+ from 119,
739
+ to 139,
740
+ strand unknown,
741
+ id local str "Query_2"
742
+ },
743
+ int {
744
+ from 46,
745
+ to 108,
746
+ strand minus,
747
+ id local str "SI2.2.0_02019"
748
+ }
749
+ }
750
+ }
751
+ }
752
+ },
753
+ {
754
+ type partial,
755
+ dim 2,
756
+ score {
757
+ {
758
+ id str "score",
759
+ value int 48
760
+ },
761
+ {
762
+ id str "e_value",
763
+ value real { 137339689136456, 10, -14 }
764
+ },
765
+ {
766
+ id str "bit_score",
767
+ value real { 23097811924077, 10, -12 }
768
+ },
769
+ {
770
+ id str "num_ident",
771
+ value int 14
772
+ },
773
+ {
774
+ id str "comp_adjustment_method",
775
+ value int 2
776
+ },
777
+ {
778
+ id str "num_positives",
779
+ value int 25
780
+ },
781
+ {
782
+ id str "hsp_percent_coverage",
783
+ value real { 252311827956989, 10, -13 }
784
+ }
785
+ },
786
+ segs std {
787
+ {
788
+ dim 2,
789
+ ids {
790
+ local str "Query_2",
791
+ local str "SI2.2.0_03352"
792
+ },
793
+ loc {
794
+ int {
795
+ from 41,
796
+ to 52,
797
+ strand unknown,
798
+ id local str "Query_2"
799
+ },
800
+ int {
801
+ from 495,
802
+ to 530,
803
+ strand plus,
804
+ id local str "SI2.2.0_03352"
805
+ }
806
+ }
807
+ },
808
+ {
809
+ dim 2,
810
+ ids {
811
+ local str "Query_2",
812
+ local str "SI2.2.0_03352"
813
+ },
814
+ loc {
815
+ empty local str "Query_2",
816
+ int {
817
+ from 531,
818
+ to 551,
819
+ strand plus,
820
+ id local str "SI2.2.0_03352"
821
+ }
822
+ }
823
+ },
824
+ {
825
+ dim 2,
826
+ ids {
827
+ local str "Query_2",
828
+ local str "SI2.2.0_03352"
829
+ },
830
+ loc {
831
+ int {
832
+ from 53,
833
+ to 86,
834
+ strand unknown,
835
+ id local str "Query_2"
836
+ },
837
+ int {
838
+ from 552,
839
+ to 653,
840
+ strand plus,
841
+ id local str "SI2.2.0_03352"
842
+ }
843
+ }
844
+ }
845
+ }
846
+ },
847
+ {
848
+ type partial,
849
+ dim 2,
850
+ score {
851
+ {
852
+ id str "score",
853
+ value int 44
854
+ },
855
+ {
856
+ id str "e_value",
857
+ value real { 3025295033467, 10, -12 }
858
+ },
859
+ {
860
+ id str "bit_score",
861
+ value real { 215570136204075, 10, -13 }
862
+ },
863
+ {
864
+ id str "num_ident",
865
+ value int 22
866
+ },
867
+ {
868
+ id str "comp_adjustment_method",
869
+ value int 2
870
+ },
871
+ {
872
+ id str "num_positives",
873
+ value int 32
874
+ },
875
+ {
876
+ id str "hsp_percent_coverage",
877
+ value real { 354462365591398, 10, -13 }
878
+ }
879
+ },
880
+ segs std {
881
+ {
882
+ dim 2,
883
+ ids {
884
+ local str "Query_2",
885
+ local str "SI2.2.0_05451"
886
+ },
887
+ loc {
888
+ int {
889
+ from 97,
890
+ to 115,
891
+ strand unknown,
892
+ id local str "Query_2"
893
+ },
894
+ int {
895
+ from 26,
896
+ to 82,
897
+ strand plus,
898
+ id local str "SI2.2.0_05451"
899
+ }
900
+ }
901
+ },
902
+ {
903
+ dim 2,
904
+ ids {
905
+ local str "Query_2",
906
+ local str "SI2.2.0_05451"
907
+ },
908
+ loc {
909
+ empty local str "Query_2",
910
+ int {
911
+ from 83,
912
+ to 130,
913
+ strand plus,
914
+ id local str "SI2.2.0_05451"
915
+ }
916
+ }
917
+ },
918
+ {
919
+ dim 2,
920
+ ids {
921
+ local str "Query_2",
922
+ local str "SI2.2.0_05451"
923
+ },
924
+ loc {
925
+ int {
926
+ from 116,
927
+ to 125,
928
+ strand unknown,
929
+ id local str "Query_2"
930
+ },
931
+ int {
932
+ from 131,
933
+ to 160,
934
+ strand plus,
935
+ id local str "SI2.2.0_05451"
936
+ }
937
+ }
938
+ },
939
+ {
940
+ dim 2,
941
+ ids {
942
+ local str "Query_2",
943
+ local str "SI2.2.0_05451"
944
+ },
945
+ loc {
946
+ int {
947
+ from 126,
948
+ to 138,
949
+ strand unknown,
950
+ id local str "Query_2"
951
+ },
952
+ empty local str "SI2.2.0_05451"
953
+ }
954
+ },
955
+ {
956
+ dim 2,
957
+ ids {
958
+ local str "Query_2",
959
+ local str "SI2.2.0_05451"
960
+ },
961
+ loc {
962
+ int {
963
+ from 139,
964
+ to 148,
965
+ strand unknown,
966
+ id local str "Query_2"
967
+ },
968
+ int {
969
+ from 161,
970
+ to 190,
971
+ strand plus,
972
+ id local str "SI2.2.0_05451"
973
+ }
974
+ }
975
+ },
976
+ {
977
+ dim 2,
978
+ ids {
979
+ local str "Query_2",
980
+ local str "SI2.2.0_05451"
981
+ },
982
+ loc {
983
+ int {
984
+ from 149,
985
+ to 154,
986
+ strand unknown,
987
+ id local str "Query_2"
988
+ },
989
+ empty local str "SI2.2.0_05451"
990
+ }
991
+ },
992
+ {
993
+ dim 2,
994
+ ids {
995
+ local str "Query_2",
996
+ local str "SI2.2.0_05451"
997
+ },
998
+ loc {
999
+ int {
1000
+ from 155,
1001
+ to 161,
1002
+ strand unknown,
1003
+ id local str "Query_2"
1004
+ },
1005
+ int {
1006
+ from 191,
1007
+ to 211,
1008
+ strand plus,
1009
+ id local str "SI2.2.0_05451"
1010
+ }
1011
+ }
1012
+ }
1013
+ }
1014
+ },
1015
+ {
1016
+ type partial,
1017
+ dim 2,
1018
+ score {
1019
+ {
1020
+ id str "score",
1021
+ value int 41
1022
+ },
1023
+ {
1024
+ id str "e_value",
1025
+ value real { 665464998703274, 10, -14 }
1026
+ },
1027
+ {
1028
+ id str "bit_score",
1029
+ value real { 204014148926555, 10, -13 }
1030
+ },
1031
+ {
1032
+ id str "num_ident",
1033
+ value int 8
1034
+ },
1035
+ {
1036
+ id str "comp_adjustment_method",
1037
+ value int 2
1038
+ },
1039
+ {
1040
+ id str "num_positives",
1041
+ value int 14
1042
+ },
1043
+ {
1044
+ id str "hsp_percent_coverage",
1045
+ value real { 101774193548387, 10, -13 }
1046
+ }
1047
+ },
1048
+ segs std {
1049
+ {
1050
+ dim 2,
1051
+ ids {
1052
+ local str "Query_2",
1053
+ local str "SI2.2.0_05852"
1054
+ },
1055
+ loc {
1056
+ int {
1057
+ from 141,
1058
+ to 158,
1059
+ strand unknown,
1060
+ id local str "Query_2"
1061
+ },
1062
+ int {
1063
+ from 192,
1064
+ to 245,
1065
+ strand minus,
1066
+ id local str "SI2.2.0_05852"
1067
+ }
1068
+ }
1069
+ }
1070
+ }
1071
+ }
1072
+ },
1073
+ masks {
1074
+ {
1075
+ locations {
1076
+ packed-int {
1077
+ {
1078
+ from 5,
1079
+ to 20,
1080
+ id local str "Query_2"
1081
+ }
1082
+ }
1083
+ },
1084
+ frame notset
1085
+ }
1086
+ },
1087
+ ka-blocks {
1088
+ {
1089
+ lambda { 322429245874507, 10, -15 },
1090
+ k { 139801292049695, 10, -15 },
1091
+ h { 436862255107731, 10, -15 },
1092
+ gapped FALSE
1093
+ },
1094
+ {
1095
+ lambda { 267, 10, -3 },
1096
+ k { 41, 10, -3 },
1097
+ h { 14, 10, -2 },
1098
+ gapped TRUE
1099
+ }
1100
+ },
1101
+ search-stats {
1102
+ "Effective search space: 9254832",
1103
+ "Effective search space used: 9254832",
1104
+ "Length adjustment: 61"
1105
+ }
1106
+ }
1107
+ }