sequenceserver 0.6.7 → 0.6.8
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.
- data/Gemfile +1 -2
- data/lib/sequenceserver.rb +2 -2
- data/lib/sequenceserver/helpers.rb +3 -3
- data/sequenceserver.gemspec +2 -2
- metadata +7 -6
data/Gemfile
CHANGED
data/lib/sequenceserver.rb
CHANGED
@@ -51,7 +51,7 @@ module SequenceServer
|
|
51
51
|
# path to SequenceServer's configuration file
|
52
52
|
#
|
53
53
|
# The configuration file is a simple, YAML data store.
|
54
|
-
set :config_file, Proc.new{ File.expand_path('~/.sequenceserver.
|
54
|
+
set :config_file, Proc.new{ File.expand_path('~/.sequenceserver.conf') }
|
55
55
|
|
56
56
|
set :log, Proc.new { Logger.new(STDERR) }
|
57
57
|
log.formatter = SinatraLikeLogFormatter.new()
|
@@ -205,7 +205,7 @@ module SequenceServer
|
|
205
205
|
rescue Errno::ENOENT # config file not found
|
206
206
|
log.info('Configuration file not found')
|
207
207
|
FileUtils.cp(example_config_file, config_file)
|
208
|
-
log.info(
|
208
|
+
log.info("Generated a dummy configuration file: #{config_file}")
|
209
209
|
puts "\nPlease edit #{config_file} to indicate the location of your BLAST databases and run SequenceServer again."
|
210
210
|
exit
|
211
211
|
end
|
@@ -32,9 +32,9 @@ module SequenceServer
|
|
32
32
|
binaries[method] = path
|
33
33
|
else
|
34
34
|
blasturl = 'http://www.ncbi.nlm.nih.gov/blast/Blast.cgi?CMD=Web&PAGE_TYPE=BlastDocs&DOC_TYPE=Download'
|
35
|
-
raise IOError, "Could not find blast binaries.
|
36
|
-
|
37
|
-
|
35
|
+
raise IOError, "Could not find blast binaries." +
|
36
|
+
"\n\nYou may need to download BLAST+ from #{blasturl}." +
|
37
|
+
" And/or edit #{settings.config_file} to indicate the location of BLAST+ binaries."
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
data/sequenceserver.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
# meta
|
3
3
|
s.name = 'sequenceserver'
|
4
|
-
s.version = '0.6.
|
4
|
+
s.version = '0.6.8'
|
5
5
|
s.authors = ['Anurag Priyam', 'Ben J Woodcroft', 'Yannick Wurm']
|
6
6
|
s.email = 'anurag08priyam@gmail.com'
|
7
7
|
s.homepage = 'http://sequenceserver.com'
|
@@ -13,7 +13,7 @@ SequenceServer lets you rapidly set up a BLAST+ server with an intuitive user in
|
|
13
13
|
DESC
|
14
14
|
|
15
15
|
# dependencies
|
16
|
-
s.add_dependency('sinatra', '>= 1.0')
|
16
|
+
s.add_dependency('sinatra', '>= 1.2.0')
|
17
17
|
s.add_dependency('ptools')
|
18
18
|
|
19
19
|
# gem
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sequenceserver
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 23
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 6
|
9
|
-
-
|
10
|
-
version: 0.6.
|
9
|
+
- 8
|
10
|
+
version: 0.6.8
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Anurag Priyam
|
@@ -17,7 +17,7 @@ autorequire:
|
|
17
17
|
bindir: bin
|
18
18
|
cert_chain: []
|
19
19
|
|
20
|
-
date: 2011-12-
|
20
|
+
date: 2011-12-15 00:00:00 Z
|
21
21
|
dependencies:
|
22
22
|
- !ruby/object:Gem::Dependency
|
23
23
|
name: sinatra
|
@@ -27,11 +27,12 @@ dependencies:
|
|
27
27
|
requirements:
|
28
28
|
- - ">="
|
29
29
|
- !ruby/object:Gem::Version
|
30
|
-
hash:
|
30
|
+
hash: 31
|
31
31
|
segments:
|
32
32
|
- 1
|
33
|
+
- 2
|
33
34
|
- 0
|
34
|
-
version:
|
35
|
+
version: 1.2.0
|
35
36
|
type: :runtime
|
36
37
|
version_requirements: *id001
|
37
38
|
- !ruby/object:Gem::Dependency
|