solvebio 1.5.0 → 1.5.2
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.
- data/README.md +1 -1
- data/demo/README.md +3 -3
- data/demo/depository/README.md +3 -3
- data/solvebio.gemspec +2 -2
- metadata +2 -2
data/README.md
CHANGED
|
@@ -45,7 +45,7 @@ The following optional gems can make your shell experience better
|
|
|
45
45
|
|
|
46
46
|
# Demo code and Documentation
|
|
47
47
|
|
|
48
|
-
See the [demo folder](https://github.com/solvebio/solvebio-ruby/tree/
|
|
48
|
+
See the [demo folder](https://github.com/solvebio/solvebio-ruby/tree/master/demo) for ready-to-run examples.
|
|
49
49
|
|
|
50
50
|
The online [SolveBio Python API documentation](https://www.solvebio.com/docs/api/?python) has additional examples. To use these with the Ruby client, change `import solvebio` to `require 'solvebio'` and change `solvebio.` to `SolveBio::` everywhere it occurs.
|
|
51
51
|
|
data/demo/README.md
CHANGED
|
@@ -6,9 +6,9 @@ SolveBio aims to provide robust access to highly curated biological datasets. Wh
|
|
|
6
6
|
|
|
7
7
|
A depository contains many versions, which in turn contain many datasets. Each dataset represents an independent “datastore”. Datasets store semi-structured data similar to typical “NoSQL” databases.
|
|
8
8
|
|
|
9
|
-
The [depository folder](https://github.com/solvebio/solvebio-ruby/blob/
|
|
9
|
+
The [depository folder](https://github.com/solvebio/solvebio-ruby/blob/master/demo/depository) has examples involving retrieving, getting version information or listing depositories.
|
|
10
10
|
|
|
11
11
|
*Datasets* are access points to data. Dataset names are unique within versions of a depository. The
|
|
12
|
-
[dataset folder](https://github.com/solvebio/solvebio-ruby/blob/
|
|
12
|
+
[dataset folder](https://github.com/solvebio/solvebio-ruby/blob/master/demo/dataset) has programs for retrieving properties of a dataset.
|
|
13
13
|
|
|
14
|
-
However, issuing queries on a dataset is probably what you will most want to do. The [query folder](https://github.com/solvebio/solvebio-ruby/blob/
|
|
14
|
+
However, issuing queries on a dataset is probably what you will most want to do. The [query folder](https://github.com/solvebio/solvebio-ruby/blob/master/demo/query) contains examples of queries.
|
data/demo/depository/README.md
CHANGED
|
@@ -10,15 +10,15 @@ Right now, all depositories are curated by the SolveBio team.
|
|
|
10
10
|
|
|
11
11
|
* retrieve a depository
|
|
12
12
|
|
|
13
|
-
The [retrieve.rb](https://github.com/solvebio/solvebio-ruby/blob/
|
|
13
|
+
The [retrieve.rb](https://github.com/solvebio/solvebio-ruby/blob/master/demo/depository/retrieve.rb) Ruby program shows how to retrieve a single depository
|
|
14
14
|
|
|
15
15
|
* listing a depository
|
|
16
16
|
|
|
17
|
-
The [all.rb](https://github.com/solvebio/solvebio-ruby/blob/
|
|
17
|
+
The [all.rb](https://github.com/solvebio/solvebio-ruby/blob/master/demo/depository/all.rb) Ruby program shows how to list all depositories
|
|
18
18
|
|
|
19
19
|
* list all versions of a depository
|
|
20
20
|
|
|
21
|
-
The [versions-all.rb](https://github.com/solvebio/solvebio-ruby/blob/
|
|
21
|
+
The [versions-all.rb](https://github.com/solvebio/solvebio-ruby/blob/master/demo/depository/all.rb) Ruby program shows how to list all versions
|
|
22
22
|
of a depository
|
|
23
23
|
|
|
24
24
|
See also the [SolveBio Depository API](https://www.solvebio.com/docs/api/#depositories)
|
data/solvebio.gemspec
CHANGED
|
@@ -14,8 +14,8 @@ Gem::Specification.new do |s|
|
|
|
14
14
|
## If your rubyforge_project name is different, then edit it and comment out
|
|
15
15
|
## the sub! line in the Rakefile
|
|
16
16
|
s.name = 'solvebio'
|
|
17
|
-
s.version = '1.5.
|
|
18
|
-
s.date = '2014-
|
|
17
|
+
s.version = '1.5.2'
|
|
18
|
+
s.date = '2014-10-01'
|
|
19
19
|
|
|
20
20
|
## Make sure your summary is short. The description may be as long
|
|
21
21
|
## as you like.
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: solvebio
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 1.5.
|
|
5
|
+
version: 1.5.2
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- solvebio.com
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2014-
|
|
13
|
+
date: 2014-10-01 00:00:00 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: netrc
|