genevalidatorapp 1.4.12

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.
Files changed (72) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +24 -0
  3. data/.travis.yml +7 -0
  4. data/Gemfile +4 -0
  5. data/GeneValidatorApp.gemspec +50 -0
  6. data/LICENSE.txt +661 -0
  7. data/README.md +101 -0
  8. data/Rakefile +14 -0
  9. data/bin/genevalidatorapp +122 -0
  10. data/config.ru +3 -0
  11. data/lib/GeneValidatorApp.rb +321 -0
  12. data/lib/GeneValidatorApp/config.rb +86 -0
  13. data/lib/GeneValidatorApp/database.rb +114 -0
  14. data/lib/GeneValidatorApp/genevalidator.rb +241 -0
  15. data/lib/GeneValidatorApp/logger.rb +24 -0
  16. data/lib/GeneValidatorApp/version.rb +3 -0
  17. data/public/GeneValidator/.gitkeep +0 -0
  18. data/public/web_files/css/bootstrap.min.css +7 -0
  19. data/public/web_files/css/bootstrap1.min.css +7 -0
  20. data/public/web_files/css/custom.css +521 -0
  21. data/public/web_files/css/custom.min.css +3 -0
  22. data/public/web_files/css/font-awesome.min.css +4 -0
  23. data/public/web_files/fonts/FontAwesome.otf +0 -0
  24. data/public/web_files/fonts/fontawesome-webfont.eot +0 -0
  25. data/public/web_files/fonts/fontawesome-webfont.svg +504 -0
  26. data/public/web_files/fonts/fontawesome-webfont.ttf +0 -0
  27. data/public/web_files/fonts/fontawesome-webfont.woff +0 -0
  28. data/public/web_files/img/gene.png +0 -0
  29. data/public/web_files/js/bionode-seq.min.js +1 -0
  30. data/public/web_files/js/bootstrap.min.js +6 -0
  31. data/public/web_files/js/d3.v3.min.js +5 -0
  32. data/public/web_files/js/genevalidator.js +282 -0
  33. data/public/web_files/js/genevalidator.min.js +1 -0
  34. data/public/web_files/js/jquery.cookie.min.js +1 -0
  35. data/public/web_files/js/jquery.min.js +4 -0
  36. data/public/web_files/js/jquery.tablesorter.min.js +5 -0
  37. data/public/web_files/js/jquery.validate.min.js +4 -0
  38. data/public/web_files/js/plots.js +744 -0
  39. data/public/web_files/js/plots.min.js +1 -0
  40. data/spec/app_spec.rb +107 -0
  41. data/spec/database/funky_ids/funky_ids.fa +10 -0
  42. data/spec/database/funky_ids/funky_ids.fa.nhr +0 -0
  43. data/spec/database/funky_ids/funky_ids.fa.nin +0 -0
  44. data/spec/database/funky_ids/funky_ids.fa.nog +0 -0
  45. data/spec/database/funky_ids/funky_ids.fa.nsd +9 -0
  46. data/spec/database/funky_ids/funky_ids.fa.nsi +0 -0
  47. data/spec/database/funky_ids/funky_ids.fa.nsq +0 -0
  48. data/spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta +6449 -0
  49. data/spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.phr +0 -0
  50. data/spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.pin +0 -0
  51. data/spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.pog +0 -0
  52. data/spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.psd +2378 -0
  53. data/spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.psi +0 -0
  54. data/spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.psq +0 -0
  55. data/spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta +5486 -0
  56. data/spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nhr +0 -0
  57. data/spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nin +0 -0
  58. data/spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nog +0 -0
  59. data/spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nsd +946 -0
  60. data/spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nsi +0 -0
  61. data/spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nsq +0 -0
  62. data/spec/database/unformatted/Cardiocondyla_obscurior/Cobs1.4.proteins.fa +148303 -0
  63. data/spec/database/without_parse_seqids/without_parse_seqids.fa +10 -0
  64. data/spec/database/without_parse_seqids/without_parse_seqids.fa.phr +0 -0
  65. data/spec/database/without_parse_seqids/without_parse_seqids.fa.pin +0 -0
  66. data/spec/database/without_parse_seqids/without_parse_seqids.fa.psq +0 -0
  67. data/spec/database_spec.rb +37 -0
  68. data/spec/empty_config.yml +0 -0
  69. data/views/500.slim +5 -0
  70. data/views/index.slim +66 -0
  71. data/views/layout.slim +85 -0
  72. metadata +337 -0
@@ -0,0 +1,10 @@
1
+ >SI2.2.0_06267 locus=Si_gnF.scaffold02592[1282609..1284114].pep_2 quality=100.00
2
+ MNTLWLSLWDYPGKLPLNFMVFDTKDDLQAAYWRDPYSIPLAVIFEDPQPISQRLIYEIR
3
+ TNPSYTLPPPPTKLYSAPISCRKNKTGHWMDDILSIKTGESCPVNNYLHSGFLALQMITD
4
+ ITKIKLENSDVTIPDIKLIMFPKEPYTADWMLAFRVVIPLYMVLALSQFITYLLILIVGE
5
+ KENKIKEGMKMMGLNDSVF
6
+ >SI2.2.0_13722 locus=Si_gnF.scaffold06207[1925625..1928536].pep_1 quality=100.00
7
+ MSANRLNVLVTLMLAVALLVTESGNAQVDGYLQFNPKRSAVSSPQKYCGKKLSNALQIIC
8
+ DGVYNSMFKKSGQDFPPQNKRHIAHRINGNEEESFTTLKSNFLNWCVEVYHRHYRFVFVS
9
+ EMEMADYPLAYDISPYLPPFLSRARARGMLDGRFAGRRYRRESRGIHEECCINGCTINEL
10
+ TSYCGP
@@ -0,0 +1,37 @@
1
+ require 'GeneValidatorApp'
2
+ require 'GeneValidatorApp/database'
3
+ require 'rspec'
4
+
5
+ module GeneValidatorApp
6
+ describe 'Database' do
7
+ let 'root' do
8
+ GeneValidatorApp.root
9
+ end
10
+
11
+ let 'empty_config' do
12
+ File.join(root, 'spec', 'empty_config.yml')
13
+ end
14
+
15
+ let 'database_dir' do
16
+ File.join(root, 'spec', 'database')
17
+ end
18
+
19
+ let 'database_dir_no_db' do
20
+ File.join(root, 'spec', 'database', 'proteins', 'Cardiocondyla_obscurior')
21
+ end
22
+
23
+ let 'app' do
24
+ GeneValidatorApp.init(config_file: empty_config,
25
+ database_dir: database_dir)
26
+ end
27
+
28
+ it 'can tell BLAST+ databases in a directory' do
29
+ end
30
+
31
+ it 'can tell NCBI multipart database name' do
32
+ # Database.multipart_database_name?('/home/ben/pd.ben/sequenceserver/db/nr.00').should be_true
33
+ # Database.multipart_database_name?('/home/ben/pd.ben/sequenceserver/db/nr').should be_false
34
+ # Database.multipart_database_name?('/home/ben/pd.ben/sequenceserver/db/img3.5.finished.faa.01').should be_true
35
+ end
36
+ end
37
+ end
File without changes
@@ -0,0 +1,5 @@
1
+ .alert.alert-danger role="alert"
2
+ h3.error_header Oops! Something went Wonky!
3
+ p <strong>Apologies, there was an error with your request. Please try again.</strong>
4
+ p Error Message: #{request.env['sinatra.error'].message}
5
+ p If the error persists, please contact the administrator.
@@ -0,0 +1,66 @@
1
+ section#search
2
+ h1.page-header
3
+ span GeneValidator&nbsp;
4
+ span.small Identify problems with gene predictions
5
+ form#input action="#{uri('/')}" method="POST"
6
+ .form-group#input_seq_group
7
+ label.control-label.input_seq-label for="seq" Input Sequences:
8
+ - if @max_characters != 'undefined'
9
+ textarea#seq.form-control autofocus="" name="seq" placeholder="Paste your sequence(s) here..." rows="10" spellcheck="false" data-maxCharacters="#{@max_characters}"
10
+ - else
11
+ textarea#seq.form-control autofocus="" name="seq" placeholder="Paste your sequence(s) here..." rows="10" spellcheck="false"
12
+ .clearfix
13
+ button#adv_params_btn.btn.btn-primary type="button" onclick="changeAdvParamsBtnText()"
14
+ i.fa.fa-pencil-square-o
15
+ | &nbsp;&nbsp;Show Advanced Parameters
16
+ .clearfix
17
+ #adv_params.collapse
18
+ .form-group.form-inline#validations_group
19
+ br/
20
+ label.control-label Advanced Parameters: Validations Types
21
+ br/
22
+ label.checkbox-inline.no_indent.col-lg-3.col-md-5.col-sm-6.col-xs-12
23
+ <input id="lenc" class="check" type="checkbox" name="validations[]" checked="" value="lenc">Length Validation (via clusterization)
24
+ label.checkbox-inline.no_indent.col-lg-3.col-md-5.col-sm-6.col-xs-12
25
+ <input id="lenr" class="check" type="checkbox" name="validations[]" checked="" value="lenr"> Length Validation (via ranking)
26
+ label.checkbox-inline.no_indent.col-lg-3.col-md-5.col-sm-6.col-xs-12
27
+ <input id="dup" class="check" type="checkbox" name="validations[]" checked="" value="dup"> Duplication Check
28
+ label.checkbox-inline.no_indent.col-lg-3.col-md-5.col-sm-6.col-xs-12
29
+ <input id="merge" class="check" type="checkbox" name="validations[]" checked="" value="merge"> Gene Merge Validation
30
+ label.checkbox-inline.no_indent.col-lg-3.col-md-5.col-sm-6.col-xs-12
31
+ <input id="align" class="check" type="checkbox" name="validations[]" checked="" value="align"> Multiple Alignment Validation (proteins)
32
+ label.checkbox-inline.no_indent.col-lg-3.col-md-5.col-sm-6.col-xs-12
33
+ <input id="frame" class="check" type="checkbox" name="validations[]" checked="" value="frame"> Blast Reading Frame Validation (nucleotides)
34
+ label#lastValidation.checkbox-inline.no_indent.col-lg-3.col-md-5.col-sm-6.col-xs-12
35
+ <input id="orf" class="check" type="checkbox" name="validations[]" checked="" value="orf"> Open Reading Frame Validation (nucleotides)
36
+ .clearfix
37
+ br/
38
+ .form-group.form-inline
39
+ label.control-label Advanced Parameters: Database
40
+ br/
41
+ label.radio-inline.no_indent.col-lg-3.col-md-5.col-sm-6.col-xs-12
42
+ <input type="radio" name="database" value="#{@default_db.title.chomp}" checked=""> #{@default_db.title.chomp}
43
+ - unless @non_default_dbs.empty?
44
+ - @non_default_dbs.each do |db|
45
+ label.radio-inline.no_indent.col-lg-3.col-md-5.col-sm-6.col-xs-12
46
+ <input type="radio" name="database" value="#{db.title.chomp}"> #{db.title.chomp}
47
+ .clearfix
48
+ .form-group
49
+ button#input_btn.btn.btn-lg.btn-primary type="submit" value="input"
50
+ i.fa.fa-search
51
+ | &nbsp;&nbsp;Analyse Sequences
52
+ .clearfix
53
+ .show_examples_text
54
+ span
55
+ a#protein_example onclick="examplarSequence('protein')"
56
+ | Show a protein example
57
+ span
58
+ | &nbsp;&#124;&nbsp;
59
+ span
60
+ a#dna_example onclick="examplarSequence('dna')"
61
+ | Show a DNA example
62
+ section#results
63
+ #results_box style="display:none;"
64
+ h1#output_header.page-header
65
+ span Results
66
+ #output
@@ -0,0 +1,85 @@
1
+ doctype html
2
+ html lang="en"
3
+ head
4
+ meta charset="utf-8"
5
+ meta content="IE=edge" http-equiv="X-UA-Compatible"
6
+ meta content="width=device-width, initial-scale=1" name="viewport"
7
+ meta content="" name="description"
8
+ meta content="" name="author"
9
+ title GeneValidator | Identify problems with Gene Predictions
10
+
11
+ script type="text/javascript" src="#{uri('web_files/js/jquery.min.js')}"
12
+ script type="text/javascript" src="#{uri('web_files/js/bootstrap.min.js')}"
13
+ script type="text/javascript" src="#{uri('web_files/js/jquery.tablesorter.min.js')}"
14
+ script type="text/javascript" src="#{uri('web_files/js/d3.v3.min.js')}"
15
+ script type="text/javascript" src="#{uri('web_files/js/plots.min.js')}"
16
+ script type="text/javascript" src="#{uri('web_files/js/genevalidator.min.js')}"
17
+ script type="text/javascript" src="#{uri('web_files/js/jquery.cookie.min.js')}"
18
+ script type="text/javascript" src="#{uri('web_files/js/jquery.validate.min.js')}"
19
+
20
+ /! Bootstrap core CSS
21
+ link href="#{uri('web_files/css/bootstrap1.min.css')}" rel="stylesheet" type="text/css"
22
+ link href="#{uri('web_files/css/font-awesome.min.css')}" rel="stylesheet" type="text/css"
23
+ link href="#{uri('web_files/css/custom.min.css')}" rel="stylesheet" type="text/css"
24
+
25
+ /! HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries
26
+ /![if lt IE 9]
27
+ script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"
28
+ script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"
29
+
30
+ body#mainbody
31
+ .navbar.navbar-default.navbar-fixed-top role="navigation"
32
+ .nav-container
33
+ .navbar-header
34
+ button.navbar-toggle data-target=".navbar-responsive-collapse" data-toggle="collapse" type="button"
35
+ span.icon-bar
36
+ span.icon-bar
37
+ span.icon-bar
38
+ span.navbar-brand
39
+ a href="#" GeneValidator
40
+ .navbar-collapse.collapse.navbar-responsive-collapse
41
+ ul.nav.navbar-nav
42
+ li
43
+ a href="#" Home
44
+ li
45
+ a href="https://github.com/IsmailM/GeneValidatorApp" target="_blank" Source Code
46
+ li
47
+ a href="https://ismailm.github.io/GeneValidatorApp-API" target="_blank" API
48
+ /! a href="#" Documentation
49
+ /! li
50
+ /! a href="#" Support
51
+ li
52
+ a href="http://yannick.poulet.org" target="_blank" Wurm Lab
53
+ ul.nav.navbar-nav.navbar-right
54
+ li
55
+ a.nav_github_icon href="https://github.com/IsmailM/GeneValidatorApp" target="_blank"
56
+ span.i.fa.fa-2x.fa-github
57
+ ==yield
58
+ #spinner.modal aria-hidden="true" aria-labelledby="spinner" role="dialog" tabindex="-1"
59
+ .modal-dialog
60
+ .modal-content
61
+ .modal-body.text-center
62
+ h2 Calculating...
63
+ p.results_link This may take some time. Please leave this page open.
64
+ i.fa.fa-spinner.fa-5x.fa-spin
65
+ footer#footer
66
+ p.text-muted.text-center
67
+ | Please cite "Dragan M, Moghul MI, Priyam A &amp; Wurm Y
68
+ em
69
+ | (in prep)
70
+ | GeneValidator: identify problematic gene predictions"
71
+ br
72
+ | Developed at
73
+ a href="http://yannick.poulet.org" target="_blank" Wurm Lab
74
+ | ,
75
+ a href="http://www.sbcs.qmul.ac.uk" target="_blank" QMUL
76
+ | with funding by
77
+ a href="http://www.bbsrc.ac.uk/home/home.aspx" target="_blank" BBSRC
78
+ | and
79
+ a href="https://www.google-melange.com/gsoc/homepage/google/gsoc2013" target="_blank" Google Summer of Code 2013
80
+ br
81
+ | This page was created by
82
+ a href="https://github.com/IsmailM/GeneValidatorApp" target="_blank" GeneValidator Web Application
83
+ | v#{GeneValidatorApp::VERSION} (using
84
+ a href="https://github.com/monicadragan/GeneValidator" target="_blank" GeneValidator
85
+ | v#{@current_gv_version})
metadata ADDED
@@ -0,0 +1,337 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: genevalidatorapp
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.4.12
5
+ platform: ruby
6
+ authors:
7
+ - Ismail Moghul
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-05-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.6'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.3'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.3'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.2'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.2'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rack-test
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.6'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.6'
69
+ - !ruby/object:Gem::Dependency
70
+ name: bio
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.4'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.4'
83
+ - !ruby/object:Gem::Dependency
84
+ name: genevalidator
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '1.5'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '1.5'
97
+ - !ruby/object:Gem::Dependency
98
+ name: sinatra
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '1.4'
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '1.4'
111
+ - !ruby/object:Gem::Dependency
112
+ name: sinatra-contrib
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - "~>"
116
+ - !ruby/object:Gem::Version
117
+ version: '1.4'
118
+ type: :runtime
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - "~>"
123
+ - !ruby/object:Gem::Version
124
+ version: '1.4'
125
+ - !ruby/object:Gem::Dependency
126
+ name: sinatra-cross_origin
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - "~>"
130
+ - !ruby/object:Gem::Version
131
+ version: '0.3'
132
+ type: :runtime
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - "~>"
137
+ - !ruby/object:Gem::Version
138
+ version: '0.3'
139
+ - !ruby/object:Gem::Dependency
140
+ name: slim
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '3.0'
146
+ type: :runtime
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '3.0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: slop
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - "~>"
158
+ - !ruby/object:Gem::Version
159
+ version: '4.0'
160
+ type: :runtime
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - "~>"
165
+ - !ruby/object:Gem::Version
166
+ version: '4.0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: thin
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - "~>"
172
+ - !ruby/object:Gem::Version
173
+ version: '1.6'
174
+ type: :runtime
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - "~>"
179
+ - !ruby/object:Gem::Version
180
+ version: '1.6'
181
+ - !ruby/object:Gem::Dependency
182
+ name: w3c_validators
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - "~>"
186
+ - !ruby/object:Gem::Version
187
+ version: '1.1'
188
+ type: :runtime
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - "~>"
193
+ - !ruby/object:Gem::Version
194
+ version: '1.1'
195
+ description: A Web App wrapper for GeneValidator, a program for validating gene predictions.
196
+ email:
197
+ - Ismail.Moghul@gmail.com
198
+ executables:
199
+ - genevalidatorapp
200
+ extensions: []
201
+ extra_rdoc_files: []
202
+ files:
203
+ - ".gitignore"
204
+ - ".travis.yml"
205
+ - Gemfile
206
+ - GeneValidatorApp.gemspec
207
+ - LICENSE.txt
208
+ - README.md
209
+ - Rakefile
210
+ - bin/genevalidatorapp
211
+ - config.ru
212
+ - lib/GeneValidatorApp.rb
213
+ - lib/GeneValidatorApp/config.rb
214
+ - lib/GeneValidatorApp/database.rb
215
+ - lib/GeneValidatorApp/genevalidator.rb
216
+ - lib/GeneValidatorApp/logger.rb
217
+ - lib/GeneValidatorApp/version.rb
218
+ - public/GeneValidator/.gitkeep
219
+ - public/web_files/css/bootstrap.min.css
220
+ - public/web_files/css/bootstrap1.min.css
221
+ - public/web_files/css/custom.css
222
+ - public/web_files/css/custom.min.css
223
+ - public/web_files/css/font-awesome.min.css
224
+ - public/web_files/fonts/FontAwesome.otf
225
+ - public/web_files/fonts/fontawesome-webfont.eot
226
+ - public/web_files/fonts/fontawesome-webfont.svg
227
+ - public/web_files/fonts/fontawesome-webfont.ttf
228
+ - public/web_files/fonts/fontawesome-webfont.woff
229
+ - public/web_files/img/gene.png
230
+ - public/web_files/js/bionode-seq.min.js
231
+ - public/web_files/js/bootstrap.min.js
232
+ - public/web_files/js/d3.v3.min.js
233
+ - public/web_files/js/genevalidator.js
234
+ - public/web_files/js/genevalidator.min.js
235
+ - public/web_files/js/jquery.cookie.min.js
236
+ - public/web_files/js/jquery.min.js
237
+ - public/web_files/js/jquery.tablesorter.min.js
238
+ - public/web_files/js/jquery.validate.min.js
239
+ - public/web_files/js/plots.js
240
+ - public/web_files/js/plots.min.js
241
+ - spec/app_spec.rb
242
+ - spec/database/funky_ids/funky_ids.fa
243
+ - spec/database/funky_ids/funky_ids.fa.nhr
244
+ - spec/database/funky_ids/funky_ids.fa.nin
245
+ - spec/database/funky_ids/funky_ids.fa.nog
246
+ - spec/database/funky_ids/funky_ids.fa.nsd
247
+ - spec/database/funky_ids/funky_ids.fa.nsi
248
+ - spec/database/funky_ids/funky_ids.fa.nsq
249
+ - spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta
250
+ - spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.phr
251
+ - spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.pin
252
+ - spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.pog
253
+ - spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.psd
254
+ - spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.psi
255
+ - spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.psq
256
+ - spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta
257
+ - spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nhr
258
+ - spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nin
259
+ - spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nog
260
+ - spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nsd
261
+ - spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nsi
262
+ - spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nsq
263
+ - spec/database/unformatted/Cardiocondyla_obscurior/Cobs1.4.proteins.fa
264
+ - spec/database/without_parse_seqids/without_parse_seqids.fa
265
+ - spec/database/without_parse_seqids/without_parse_seqids.fa.phr
266
+ - spec/database/without_parse_seqids/without_parse_seqids.fa.pin
267
+ - spec/database/without_parse_seqids/without_parse_seqids.fa.psq
268
+ - spec/database_spec.rb
269
+ - spec/empty_config.yml
270
+ - views/500.slim
271
+ - views/index.slim
272
+ - views/layout.slim
273
+ homepage: https://github.com/wurmlab/GeneValidatorApp
274
+ licenses:
275
+ - AGPL
276
+ metadata: {}
277
+ post_install_message: |2+
278
+
279
+ ------------------------------------------------------------------------
280
+ Thank you for validating your gene predictions with GeneValidator!
281
+
282
+ To launch GeneValidatorApp execute 'genevalidatorapp' from command line.
283
+
284
+ $ genevalidatorapp [options]
285
+
286
+ Visit https://github.com/wurmlab/GeneValidatorApp for more information.
287
+ ------------------------------------------------------------------------
288
+
289
+ rdoc_options: []
290
+ require_paths:
291
+ - lib
292
+ required_ruby_version: !ruby/object:Gem::Requirement
293
+ requirements:
294
+ - - ">="
295
+ - !ruby/object:Gem::Version
296
+ version: 2.0.0
297
+ required_rubygems_version: !ruby/object:Gem::Requirement
298
+ requirements:
299
+ - - ">="
300
+ - !ruby/object:Gem::Version
301
+ version: '0'
302
+ requirements: []
303
+ rubyforge_project:
304
+ rubygems_version: 2.4.6
305
+ signing_key:
306
+ specification_version: 4
307
+ summary: A Web App wrapper for GeneValidator.
308
+ test_files:
309
+ - spec/app_spec.rb
310
+ - spec/database/funky_ids/funky_ids.fa
311
+ - spec/database/funky_ids/funky_ids.fa.nhr
312
+ - spec/database/funky_ids/funky_ids.fa.nin
313
+ - spec/database/funky_ids/funky_ids.fa.nog
314
+ - spec/database/funky_ids/funky_ids.fa.nsd
315
+ - spec/database/funky_ids/funky_ids.fa.nsi
316
+ - spec/database/funky_ids/funky_ids.fa.nsq
317
+ - spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta
318
+ - spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.phr
319
+ - spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.pin
320
+ - spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.pog
321
+ - spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.psd
322
+ - spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.psi
323
+ - spec/database/sample/proteins/Solenopsis_invicta/Sinvicta2-2-3.prot.subset.fasta.psq
324
+ - spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta
325
+ - spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nhr
326
+ - spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nin
327
+ - spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nog
328
+ - spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nsd
329
+ - spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nsi
330
+ - spec/database/sample/transcripts/Solenopsis_invicta/Sinvicta2-2-3.cdna.subset.fasta.nsq
331
+ - spec/database/unformatted/Cardiocondyla_obscurior/Cobs1.4.proteins.fa
332
+ - spec/database/without_parse_seqids/without_parse_seqids.fa
333
+ - spec/database/without_parse_seqids/without_parse_seqids.fa.phr
334
+ - spec/database/without_parse_seqids/without_parse_seqids.fa.pin
335
+ - spec/database/without_parse_seqids/without_parse_seqids.fa.psq
336
+ - spec/database_spec.rb
337
+ - spec/empty_config.yml