sequenceserver 0.8.3 → 0.8.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

@@ -0,0 +1,7 @@
1
+ Database: parse.fa
2
+ 473 sequences; 287,752 total bases
3
+
4
+ Date: Sep 25, 2011 10:05 AM Longest sequence: 5,424 bases
5
+
6
+ Volumes:
7
+ /home/ben/forays/sequenceserver/tests/database/nucleotide/parse.fa
data/views/search.erb~ ADDED
@@ -0,0 +1,164 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xml:lang="en" lang="en" xmlns="http://www.w3.org/1999/xhtml">
4
+ <head>
5
+ <title>SequenceServer</title>
6
+ <meta name="author" content="Anurag Priyam" />
7
+ <meta name="author" content="Yannick Wurm" />
8
+ <meta name="author" content="Cedric Wurm" />
9
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type"/>
10
+ <script type="text/javascript" src="/js/jquery.js"></script>
11
+ <script type="text/javascript" src="/js/jquery.enablePlaceholder.min.js"></script>
12
+ <script type="text/javascript" src="/js/search.js"></script>
13
+ <link rel="stylesheet" media="screen" type="text/css" href="css/beige.css"/>
14
+ </head>
15
+
16
+ <body>
17
+ <div class="container">
18
+ <h1 class="banner">BLAST Sequence(s)</h1>
19
+ <form method="post" action="/#result">
20
+ <div class="horizontal">
21
+ <div class="entryfield">
22
+ <textarea name="sequence" id="sequence" rows="11" cols="" placeholder="Paste your sequence(s) here..." ></textarea>
23
+ </div>
24
+ <fieldset class="blastmethods box" >
25
+ <div>
26
+ <input type="radio" name="method" value="blastp" id="blastp" class="radiobutton" title="Protein query; protein database."/>
27
+ <label for="blastp" title="Protein query; protein database.">blastp</label>
28
+ </div>
29
+ <div class="clear">
30
+ <input type="radio" name="method" value="tblastn" id="tblastn" class="radiobutton" title="Protein query; six-frame translated nucleotide database." />
31
+ <label for="tblastn" title="Protein query; six-frame translated nucleotide database.">tblastn</label>
32
+ </div>
33
+ <div class="clear">
34
+ <input type="radio" name="method" value="blastn" id="blastn" class="radiobutton" title="Nucleotide query; nucleotide database."/>
35
+ <label for="blastn" title="Nucleotide query; nucleotide database.">blastn</label>
36
+ </div>
37
+ <div class="clear">
38
+ <input type="radio" name="method" value="blastx" id="blastx" class="radiobutton" title="Translated nucleotide query; protein database."/>
39
+ <label for="blastx" title="Six-frame translated nucleotide query; protein database.">blastx</label>
40
+ </div>
41
+ <div class="clear">
42
+ <input type="radio" name="method" value="tblastx" id="tblastx" class="radiobutton" title="Six-frame translated nucleotide query; six-frame translated nucleotide database"/>
43
+ <label for="tblastx" title="Six-frame translated nucleotide query; six-frame translated nucleotide database">tblastx</label>
44
+ </div>
45
+ </fieldset>
46
+ </div>
47
+
48
+
49
+ <div class='horizontal'>
50
+ <fieldset class="nucleotide rounded box databases">
51
+ <h2>Nucleotide databases</h2>
52
+ <!-- Database list is actually dynamically loaded -->
53
+ <% settings.databases['nucleotide'].each_with_index do |db, i| %>
54
+ <input type="checkbox" class="dbcheckbox" id="ndb<%=i%>" name="db[nucleotide][]" value="<%=i%>"/>
55
+ <label for="ndb<%=i%>" class="dbdescription"><%= db.title or db.name %></label>
56
+ <% end %>
57
+ </fieldset>
58
+
59
+ <fieldset class="protein rounded box databases">
60
+ <h2>Protein databases</h2>
61
+ <!-- Database list is actually dynamically loaded-->
62
+ <% settings.databases['protein'].each_with_index do |db, i| %>
63
+ <input type="checkbox" class="dbcheckbox" id="pdb<%=i%>" name="db[protein][]" value="<%=i%>"/>
64
+ <label for="pdb<%=i%>" class="dbdescription"><%= db.title or db.name %></label>
65
+ <% end %>
66
+ </fieldset>
67
+ </div>
68
+
69
+ <div class="horizontal">
70
+ <fieldset class="advanced box rounded">
71
+ <span class="bigtext pointer" title="Click to show/hide advanced options.">Advanced parameters:</span>
72
+ <input type="text" name="advanced" id="advanced" title="View, and enter advanced parameters." placeholder="eg: -evalue 1.0e-5 -num_alignments 100"/>
73
+ <pre class="smalltext">
74
+ <%= ERB::Util.h %q|
75
+ -evalue <Real>
76
+ Expectation value (E) threshold for saving hits
77
+ Default = `10'
78
+ -word_size <Integer, >=2>
79
+ Word size for wordfinder algorithm
80
+ -gapopen <Integer>
81
+ Cost to open a gap
82
+ -gapextend <Integer>
83
+ Cost to extend a gap
84
+ -matrix <String>
85
+ Scoring matrix name (normally BLOSUM62)
86
+ -threshold <Real, >=0>
87
+ Minimum word score such that the word is added to the BLAST lookup table
88
+ -comp_based_stats <String>
89
+ Use composition-based statistics for blastp / tblastn:
90
+ D or d: default (equivalent to 2)
91
+ 0 or F or f: no composition-based statistics
92
+ 1: Composition-based statistics as in NAR 29:2994-3005, 2001
93
+ 2 or T or t : Composition-based score adjustment as in Bioinformatics
94
+ 21:902-911,
95
+ 2005, conditioned on sequence properties
96
+ 3: Composition-based score adjustment as in Bioinformatics 21:902-911,
97
+ 2005, unconditionally
98
+ For programs other than tblastn, must either be absent or be D, F or 0
99
+ Default = `2'
100
+ -num_descriptions <Integer, >=0>
101
+ Number of database sequences to show one-line descriptions for
102
+ Default = `500'
103
+ -num_alignments <Integer, >=0>
104
+ Number of database sequences to show alignments for
105
+ Default = `250'
106
+ *** Query filtering options
107
+ -seg <String>
108
+ Filter query sequence with SEG (Format: 'yes', 'window locut hicut', or
109
+ 'no' to disable)
110
+ Default = `no'
111
+ -soft_masking <Boolean>
112
+ Apply filtering locations as soft masks
113
+ Default = `false'
114
+ -lcase_masking
115
+ Use lower case filtering in query and subject sequence(s)?
116
+ *** Restrict search or results
117
+ -gilist <String>
118
+ Restrict search of database to list of GI's
119
+ * Incompatible with: negative_gilist, seqidlist, remote, subject,
120
+ subject_loc
121
+ -seqidlist <String>
122
+ Restrict search of database to list of SeqId's
123
+ * Incompatible with: gilist, negative_gilist, remote, subject,
124
+ subject_loc
125
+ -negative_gilist <String>
126
+ Restrict search of database to everything except the listed GIs
127
+ * Incompatible with: gilist, seqidlist, remote, subject, subject_loc
128
+ -entrez_query <String>
129
+ Restrict search with the given Entrez query
130
+ * Requires: remote
131
+ -db_soft_mask <String>
132
+ Filtering algorithm ID to apply to the BLAST database as soft masking
133
+ * Incompatible with: subject, subject_loc
134
+ -culling_limit <Integer, >=0>
135
+ If the query range of a hit is enveloped by that of at least this many
136
+ higher-scoring hits, delete the hit
137
+ * Incompatible with: best_hit_overhang, best_hit_score_edge
138
+ -best_hit_overhang <Real, (>0 and <0.5)>
139
+ Best Hit algorithm overhang value (recommended value: 0.1)
140
+ * Incompatible with: culling_limit
141
+ -best_hit_score_edge <Real, (>0 and <0.5)>
142
+ Best Hit algorithm score edge value (recommended value: 0.1)
143
+ * Incompatible with: culling_limit
144
+ -max_target_seqs <Integer, >=1>
145
+ Maximum number of aligned sequences to keep | %>
146
+ </pre>
147
+
148
+ </fieldset>
149
+ <div class="submit_button">
150
+ <input type="submit" value="BLAST!"/>
151
+ </div>
152
+ </div>
153
+ </form>
154
+ <div class="result prepend-top" id="result">
155
+ <pre class='smalltext'>
156
+ <%= @blast %>
157
+ </pre>
158
+ </div>
159
+ <div class ="underbar">
160
+ <p>&copy; <a href='http://www.sequenceserver.com'>sequenceserver.com</a></p>
161
+ </div>
162
+ </div>
163
+ </body>
164
+ </html>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sequenceserver
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.3
4
+ version: 0.8.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2013-03-06 00:00:00.000000000 Z
14
+ date: 2013-03-29 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: bundler
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - ~>
22
22
  - !ruby/object:Gem::Version
23
- version: 1.2.0
23
+ version: '1.2'
24
24
  type: :runtime
25
25
  prerelease: false
26
26
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  requirements:
29
29
  - - ~>
30
30
  - !ruby/object:Gem::Version
31
- version: 1.2.0
31
+ version: '1.2'
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: sinatra
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -103,48 +103,75 @@ executables:
103
103
  extensions: []
104
104
  extra_rdoc_files: []
105
105
  files:
106
- - lib/sequenceserver/blast.rb
107
- - lib/sequenceserver/customisation.rb
108
- - lib/sequenceserver/database.rb
109
- - lib/sequenceserver/database_formatter.rb
110
- - lib/sequenceserver/helpers.rb
111
106
  - lib/sequenceserver/sequencehelpers.rb
107
+ - lib/sequenceserver/helpers.rb
108
+ - lib/sequenceserver/blast.rb
112
109
  - lib/sequenceserver/sinatralikeloggerformatter.rb
110
+ - lib/sequenceserver/database_formatter.rb~
111
+ - lib/sequenceserver/database.rb
113
112
  - lib/sequenceserver/version.rb
113
+ - lib/sequenceserver/database_formatter.rb
114
+ - lib/sequenceserver/customisation.rb
115
+ - lib/blast.rb~
114
116
  - lib/sequenceserver.rb
115
117
  - views/500.erb
116
118
  - views/_options.erb
117
119
  - views/search.erb
118
- - public/css/bootstrap.dropdown.css
119
- - public/css/bootstrap.icons.css
120
- - public/css/bootstrap.min.css
121
- - public/css/bootstrap.modal.css
122
- - public/css/custom.css
123
- - public/img/glyphicons-halflings-white.png
124
- - public/img/glyphicons-halflings.png
125
- - public/js/bootstrap.dropdown.js
120
+ - views/search.erb~
126
121
  - public/js/bootstrap.modal.js
122
+ - public/js/bootstrap.dropdown.js
127
123
  - public/js/bootstrap.transition.js
128
- - public/js/jquery.activity.js
129
- - public/js/jquery.enablePlaceholder.min.js
130
- - public/js/jquery.js
131
- - public/js/jquery.scrollspy.js
132
124
  - public/js/jquery.ui.js
125
+ - public/js/Scribl.min.js
126
+ - public/js/jquery.scrollspy.js
133
127
  - public/js/sequenceserver.blast.js
134
- - public/js/sequenceserver.js
135
128
  - public/js/store.min.js
129
+ - public/js/sequenceserver.js~
130
+ - public/js/jquery.enablePlaceholder.min.js
131
+ - public/js/jquery.activity.js
132
+ - public/js/sequenceserver.js
133
+ - public/js/jquery.js
134
+ - public/img/glyphicons-halflings.png
135
+ - public/img/glyphicons-halflings-white.png
136
+ - public/css/bootstrap.dropdown.css
137
+ - public/css/bootstrap.icons.css
138
+ - public/css/custom.css
139
+ - public/css/beige.css~
140
+ - public/css/beige.css.css
141
+ - public/css/bootstrap.modal.css
142
+ - public/css/bootstrap.min.css
136
143
  - tests/database/nucleotide/Sinvicta2-2-3.cdna.subset.fasta
144
+ - tests/database/nucleotide/headVno_parse.archive.csv
145
+ - tests/database/nucleotide/head.faVparse.html
146
+ - tests/database/nucleotide/parse.info
147
+ - tests/database/nucleotide/headVparse.archive.csv
148
+ - tests/database/nucleotide/headVparse.archive
149
+ - tests/database/nucleotide/parse.fa.nsi
150
+ - tests/database/nucleotide/headVno_parse.archive
151
+ - tests/database/nucleotide/parse.fa.nsd
152
+ - tests/database/nucleotide/parse.fa.nsq
153
+ - tests/database/nucleotide/parse.fa.nhr
154
+ - tests/database/nucleotide/head.faVno_parse.html
155
+ - tests/database/nucleotide/parse.fa.nog
156
+ - tests/database/nucleotide/no_parse.fa
157
+ - tests/database/nucleotide/parse.fa
158
+ - tests/database/nucleotide/no_parse.fa.nsq
159
+ - tests/database/nucleotide/parse.fa.nin
160
+ - tests/database/nucleotide/Sinvicta2-2-3.cdna.subset.fasta.nsq
137
161
  - tests/database/nucleotide/Sinvicta2-2-3.cdna.subset.fasta.nhr
138
162
  - tests/database/nucleotide/Sinvicta2-2-3.cdna.subset.fasta.nin
139
- - tests/database/nucleotide/Sinvicta2-2-3.cdna.subset.fasta.nsq
140
- - tests/database/protein/Sinvicta2-2-3.prot.subset.fasta
141
- - tests/database/protein/Sinvicta2-2-3.prot.subset.fasta.phr
163
+ - tests/database/nucleotide/no_parse.fa.nin
164
+ - tests/database/nucleotide/head.fa
165
+ - tests/database/nucleotide/no_parse.info
166
+ - tests/database/nucleotide/no_parse.fa.nhr
142
167
  - tests/database/protein/Sinvicta2-2-3.prot.subset.fasta.pin
168
+ - tests/database/protein/Sinvicta2-2-3.prot.subset.fasta
143
169
  - tests/database/protein/Sinvicta2-2-3.prot.subset.fasta.psq
170
+ - tests/database/protein/Sinvicta2-2-3.prot.subset.fasta.phr
144
171
  - tests/run
145
- - tests/test_sequencehelpers.rb
146
172
  - tests/test_sequenceserver_blast.rb
147
173
  - tests/ui.specs.todo
174
+ - tests/test_sequencehelpers.rb
148
175
  - config.ru
149
176
  - example.config.yml
150
177
  - LICENSE.txt
@@ -152,7 +179,8 @@ files:
152
179
  - README.txt
153
180
  - Gemfile
154
181
  - sequenceserver.gemspec
155
- - bin/sequenceserver
182
+ - !binary |-
183
+ YmluL3NlcXVlbmNlc2VydmVy
156
184
  homepage: http://sequenceserver.com
157
185
  licenses:
158
186
  - SequenceServer (custom)
@@ -177,7 +205,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
177
205
  version: '0'
178
206
  requirements: []
179
207
  rubyforge_project:
180
- rubygems_version: 1.8.23
208
+ rubygems_version: 1.8.24
181
209
  signing_key:
182
210
  specification_version: 3
183
211
  summary: BLAST search made easy!