sequenceserver 0.8.5 → 0.8.6

Sign up to get free protection for your applications and to get access to all the features.
Binary file
Binary file
@@ -1,7 +0,0 @@
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~ DELETED
@@ -1,164 +0,0 @@
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>