bio-basespace-sdk 0.1.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.
Potentially problematic release.
This version of bio-basespace-sdk might be problematic. Click here for more details.
- data/.document +5 -0
- data/.rspec +1 -0
- data/.travis.yml +11 -0
- data/Gemfile +16 -0
- data/License.txt +275 -0
- data/README.md +671 -0
- data/Rakefile +54 -0
- data/VERSION +1 -0
- data/examples/0_app_triggering.rb +135 -0
- data/examples/1_authentication.rb +156 -0
- data/examples/2_browsing.rb +84 -0
- data/examples/3_accessing_files.rb +129 -0
- data/examples/4_app_result_upload.rb +102 -0
- data/examples/5_purchasing.rb +119 -0
- data/lib/basespace.rb +126 -0
- data/lib/basespace/api/api_client.rb +313 -0
- data/lib/basespace/api/base_api.rb +242 -0
- data/lib/basespace/api/basespace_api.rb +789 -0
- data/lib/basespace/api/basespace_error.rb +80 -0
- data/lib/basespace/api/billing_api.rb +115 -0
- data/lib/basespace/model.rb +78 -0
- data/lib/basespace/model/app_result.rb +158 -0
- data/lib/basespace/model/app_result_response.rb +40 -0
- data/lib/basespace/model/app_session.rb +99 -0
- data/lib/basespace/model/app_session_compact.rb +43 -0
- data/lib/basespace/model/app_session_launch_object.rb +58 -0
- data/lib/basespace/model/app_session_response.rb +41 -0
- data/lib/basespace/model/application.rb +47 -0
- data/lib/basespace/model/application_compact.rb +44 -0
- data/lib/basespace/model/basespace_model.rb +60 -0
- data/lib/basespace/model/coverage.rb +48 -0
- data/lib/basespace/model/coverage_meta_response.rb +40 -0
- data/lib/basespace/model/coverage_metadata.rb +43 -0
- data/lib/basespace/model/coverage_response.rb +40 -0
- data/lib/basespace/model/file.rb +172 -0
- data/lib/basespace/model/file_response.rb +40 -0
- data/lib/basespace/model/genome_response.rb +40 -0
- data/lib/basespace/model/genome_v1.rb +56 -0
- data/lib/basespace/model/list_response.rb +53 -0
- data/lib/basespace/model/multipart_upload.rb +288 -0
- data/lib/basespace/model/product.rb +50 -0
- data/lib/basespace/model/project.rb +103 -0
- data/lib/basespace/model/project_response.rb +40 -0
- data/lib/basespace/model/purchase.rb +89 -0
- data/lib/basespace/model/purchase_response.rb +39 -0
- data/lib/basespace/model/purchased_product.rb +56 -0
- data/lib/basespace/model/query_parameters.rb +86 -0
- data/lib/basespace/model/query_parameters_purchased_product.rb +67 -0
- data/lib/basespace/model/refund_purchase_response.rb +40 -0
- data/lib/basespace/model/resource_list.rb +48 -0
- data/lib/basespace/model/response_status.rb +42 -0
- data/lib/basespace/model/run_compact.rb +55 -0
- data/lib/basespace/model/sample.rb +127 -0
- data/lib/basespace/model/sample_response.rb +40 -0
- data/lib/basespace/model/user.rb +80 -0
- data/lib/basespace/model/user_compact.rb +45 -0
- data/lib/basespace/model/user_response.rb +40 -0
- data/lib/basespace/model/variant.rb +57 -0
- data/lib/basespace/model/variant_header.rb +44 -0
- data/lib/basespace/model/variant_info.rb +48 -0
- data/lib/basespace/model/variants_header_response.rb +40 -0
- data/spec/basespaceapi_spec.rb +26 -0
- data/spec/basespaceerror_spec.rb +87 -0
- data/spec/basespacemodel_spec.rb +57 -0
- metadata +239 -0
@@ -0,0 +1,44 @@
|
|
1
|
+
# Copyright 2013 Toshiaki Katayama, Joachim Baran
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
7
|
+
#
|
8
|
+
# Unless required by applicable law or agreed to in writing, software
|
9
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
10
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
11
|
+
# See the License for the specific language governing permissions and
|
12
|
+
# limitations under the License.
|
13
|
+
|
14
|
+
require 'basespace/model'
|
15
|
+
|
16
|
+
module Bio
|
17
|
+
module BaseSpace
|
18
|
+
|
19
|
+
# Variant header model.
|
20
|
+
class VariantHeader < Model
|
21
|
+
|
22
|
+
# Create a new VariantHeader instance.
|
23
|
+
def initialize
|
24
|
+
@swagger_types = {
|
25
|
+
'Metadata' => 'dict',
|
26
|
+
'Samples' => 'dict',
|
27
|
+
'Legends' => 'dict',
|
28
|
+
}
|
29
|
+
@attributes = {
|
30
|
+
'Metadata' => nil, # dict
|
31
|
+
'Samples' => nil, # dict
|
32
|
+
'Legends' => nil, # dict
|
33
|
+
}
|
34
|
+
end
|
35
|
+
|
36
|
+
# Return the sample count as string.
|
37
|
+
def to_s
|
38
|
+
return "VariantHeader: SampleCount=#{get_attr('Samples').length}"
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
end # module BaseSpace
|
43
|
+
end # module Bio
|
44
|
+
|
@@ -0,0 +1,48 @@
|
|
1
|
+
# Copyright 2013 Toshiaki Katayama, Joachim Baran
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
7
|
+
#
|
8
|
+
# Unless required by applicable law or agreed to in writing, software
|
9
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
10
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
11
|
+
# See the License for the specific language governing permissions and
|
12
|
+
# limitations under the License.
|
13
|
+
|
14
|
+
require 'basespace/model'
|
15
|
+
|
16
|
+
module Bio
|
17
|
+
module BaseSpace
|
18
|
+
|
19
|
+
# Variant info model.
|
20
|
+
class VariantInfo < Model
|
21
|
+
|
22
|
+
# Create a new VariantInfo instance.
|
23
|
+
def initialize
|
24
|
+
@swagger_types = {
|
25
|
+
'CIGAR' => 'list<Str>',
|
26
|
+
'IDREP' => 'list<Str>',
|
27
|
+
'REFREP' => 'list<Str>',
|
28
|
+
'RU' => 'list<Str>',
|
29
|
+
'VARTYPE_DEL' => 'list<Str>',
|
30
|
+
'VARTYPE_INS' => 'list<Str>',
|
31
|
+
'VARTYPE_SNV' => 'list<Str>',
|
32
|
+
}
|
33
|
+
@attributes = {
|
34
|
+
'CIGAR' => nil,
|
35
|
+
'IDREP' => nil,
|
36
|
+
'REFREP' => nil,
|
37
|
+
'RU' => nil,
|
38
|
+
'VARTYPE_DEL' => nil,
|
39
|
+
'VARTYPE_INS' => nil,
|
40
|
+
'VARTYPE_SNV' => nil,
|
41
|
+
}
|
42
|
+
end
|
43
|
+
|
44
|
+
end
|
45
|
+
|
46
|
+
end # module BaseSpace
|
47
|
+
end # module Bio
|
48
|
+
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# Copyright 2013 Toshiaki Katayama, Joachim Baran
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
7
|
+
#
|
8
|
+
# Unless required by applicable law or agreed to in writing, software
|
9
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
10
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
11
|
+
# See the License for the specific language governing permissions and
|
12
|
+
# limitations under the License.
|
13
|
+
|
14
|
+
require 'basespace/model'
|
15
|
+
|
16
|
+
module Bio
|
17
|
+
module BaseSpace
|
18
|
+
|
19
|
+
# Variants header response model.
|
20
|
+
class VariantsHeaderResponse < Model
|
21
|
+
|
22
|
+
# Create a new VariantsHeaderResponse instance.
|
23
|
+
def initialize
|
24
|
+
@swagger_types = {
|
25
|
+
'ResponseStatus' => 'ResponseStatus',
|
26
|
+
'Response' => 'VariantHeader',
|
27
|
+
'Notifications' => 'list<Str>',
|
28
|
+
}
|
29
|
+
@attributes = {
|
30
|
+
'ResponseStatus' => nil, # ResponseStatus
|
31
|
+
'Response' => nil, # VariantHeader
|
32
|
+
'Notifications' => nil, # list<Str>
|
33
|
+
}
|
34
|
+
end
|
35
|
+
|
36
|
+
end
|
37
|
+
|
38
|
+
end # module BaseSpace
|
39
|
+
end # module Bio
|
40
|
+
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# Copyright 2012-2013 Joachim Baran, Toshiaki Katayama
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
7
|
+
#
|
8
|
+
# Unless required by applicable law or agreed to in writing, software
|
9
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
10
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
11
|
+
# See the License for the specific language governing permissions and
|
12
|
+
# limitations under the License.
|
13
|
+
|
14
|
+
require 'rubygems'
|
15
|
+
require 'rspec'
|
16
|
+
|
17
|
+
require 'basespace'
|
18
|
+
|
19
|
+
describe Bio::BaseSpace::APIClient do
|
20
|
+
describe "initialization" do
|
21
|
+
it "omitting access token" do
|
22
|
+
expect { Bio::BaseSpace::APIClient.new }.to raise_error(Bio::BaseSpace::UndefinedParameterError)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
@@ -0,0 +1,87 @@
|
|
1
|
+
# Copyright 2012-2013 Joachim Baran, Toshiaki Katayama
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
7
|
+
#
|
8
|
+
# Unless required by applicable law or agreed to in writing, software
|
9
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
10
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
11
|
+
# See the License for the specific language governing permissions and
|
12
|
+
# limitations under the License.
|
13
|
+
|
14
|
+
require 'rubygems'
|
15
|
+
require 'rspec'
|
16
|
+
|
17
|
+
require 'basespace'
|
18
|
+
|
19
|
+
value = 'testvalue'
|
20
|
+
legal = 'legalcases'
|
21
|
+
|
22
|
+
describe Bio::BaseSpace::UndefinedParameterError do
|
23
|
+
describe "initialization" do
|
24
|
+
it "passing: #{value}" do
|
25
|
+
Bio::BaseSpace::UndefinedParameterError.new(value).message.should match("The following parameter must be defined: #{value}")
|
26
|
+
end
|
27
|
+
it "raising exception" do
|
28
|
+
expect { raise Bio::BaseSpace::UndefinedParameterError, value }.to raise_exception(Bio::BaseSpace::UndefinedParameterError)
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
describe Bio::BaseSpace::UnknownParameterError do
|
34
|
+
describe "initialization" do
|
35
|
+
it "passing: #{value}" do
|
36
|
+
Bio::BaseSpace::UnknownParameterError.new(value).message.should match("#{value} is not regcognized as a parameter for this call")
|
37
|
+
end
|
38
|
+
it "raising exception" do
|
39
|
+
expect { raise Bio::BaseSpace::UnknownParameterError, value }.to raise_exception(Bio::BaseSpace::UnknownParameterError)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
describe Bio::BaseSpace::IllegalParameterError do
|
45
|
+
describe "initialization" do
|
46
|
+
it "passing: #{value}" do
|
47
|
+
Bio::BaseSpace::IllegalParameterError.new(value, legal).message.should match("#{value} is not well-defined, legal options are #{legal}")
|
48
|
+
end
|
49
|
+
it "raising exception" do
|
50
|
+
expect { raise Bio::BaseSpace::IllegalParameterError.new(value, legal) }.to raise_exception(Bio::BaseSpace::IllegalParameterError)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
describe Bio::BaseSpace::WrongFiletypeError do
|
56
|
+
describe "initialization" do
|
57
|
+
it "passing: #{value}" do
|
58
|
+
Bio::BaseSpace::WrongFiletypeError.new(value).message.should match("This data request is not available for file #{value}")
|
59
|
+
end
|
60
|
+
it "raising exception" do
|
61
|
+
expect { raise Bio::BaseSpace::WrongFiletypeError, value }.to raise_exception(Bio::BaseSpace::WrongFiletypeError)
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
describe Bio::BaseSpace::NoResponseError do
|
67
|
+
describe "initialization" do
|
68
|
+
it "passing: #{value}" do
|
69
|
+
Bio::BaseSpace::NoResponseError.new(value).message.should match("No response was returned from the server for this request")
|
70
|
+
end
|
71
|
+
it "raising exception" do
|
72
|
+
expect { raise Bio::BaseSpace::NoResponseError, value }.to raise_exception(Bio::BaseSpace::NoResponseError)
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
describe Bio::BaseSpace::ModelNotInitializedError do
|
78
|
+
describe "initialization" do
|
79
|
+
it "passing: #{value}" do
|
80
|
+
Bio::BaseSpace::ModelNotInitializedError.new(value).message.should match("The request cannot be completed as model has not been initialized - #{value}")
|
81
|
+
end
|
82
|
+
it "raising exception" do
|
83
|
+
expect { raise Bio::BaseSpace::ModelNotInitializedError, value }.to raise_exception(Bio::BaseSpace::ModelNotInitializedError)
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
@@ -0,0 +1,57 @@
|
|
1
|
+
# Copyright 2012-2013 Joachim Baran
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
4
|
+
# you may not use this file except in compliance with the License.
|
5
|
+
# You may obtain a copy of the License at
|
6
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
7
|
+
#
|
8
|
+
# Unless required by applicable law or agreed to in writing, software
|
9
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
10
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
11
|
+
# See the License for the specific language governing permissions and
|
12
|
+
# limitations under the License.
|
13
|
+
|
14
|
+
require 'rubygems'
|
15
|
+
require 'rspec'
|
16
|
+
|
17
|
+
require 'basespace'
|
18
|
+
|
19
|
+
attributes = { "Id" => "X10231", "Source" => "Test", "SpeciesName" => "Homo sapiens" }
|
20
|
+
|
21
|
+
describe Bio::BaseSpace::Model do
|
22
|
+
describe "initialization" do
|
23
|
+
it "empty model" do
|
24
|
+
expect(Bio::BaseSpace::Model.new).to be_an_instance_of(Bio::BaseSpace::Model)
|
25
|
+
end
|
26
|
+
|
27
|
+
it "test attributes are nil; tested attributes: #{attributes.keys.join(', ')}" do
|
28
|
+
attributes.keys.each { |attribute|
|
29
|
+
expect(Bio::BaseSpace::Model.new.get_attr(attribute)).to be_nil
|
30
|
+
}
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
describe "attribute manipulation" do
|
35
|
+
it "getter/setter: consistency" do
|
36
|
+
model = Bio::BaseSpace::Model.new
|
37
|
+
attributes.keys.each { |attribute|
|
38
|
+
expect(model.get_attr(attribute)).to be_nil
|
39
|
+
model.set_attr(attribute, attributes[attribute])
|
40
|
+
expect(model.get_attr(attribute)).to be(attributes[attribute])
|
41
|
+
}
|
42
|
+
end
|
43
|
+
|
44
|
+
it "getter/setter: overwrite attribute value" do
|
45
|
+
model = Bio::BaseSpace::Model.new
|
46
|
+
attributes.keys.each { |attribute|
|
47
|
+
model.set_attr(attribute, attributes[attribute])
|
48
|
+
expect(model.get_attr(attribute)).to be(attributes[attribute])
|
49
|
+
new_value = "#{attributes[attribute]}-modified"
|
50
|
+
model.set_attr(attribute, new_value)
|
51
|
+
expect(model.get_attr(attribute)).to_not be(attributes[attribute])
|
52
|
+
expect(model.get_attr(attribute)).to be(new_value)
|
53
|
+
}
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
metadata
ADDED
@@ -0,0 +1,239 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: bio-basespace-sdk
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.2
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Joachim Baran
|
9
|
+
- Raoul Bonnal
|
10
|
+
- Eri Kibukawa
|
11
|
+
- Francesco Strozzi
|
12
|
+
- Toshiaki Katayama
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
date: 2013-07-20 00:00:00.000000000 Z
|
17
|
+
dependencies:
|
18
|
+
- !ruby/object:Gem::Dependency
|
19
|
+
name: getopt
|
20
|
+
requirement: !ruby/object:Gem::Requirement
|
21
|
+
none: false
|
22
|
+
requirements:
|
23
|
+
- - ! '>='
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: 1.4.1
|
26
|
+
type: :runtime
|
27
|
+
prerelease: false
|
28
|
+
version_requirements: !ruby/object:Gem::Requirement
|
29
|
+
none: false
|
30
|
+
requirements:
|
31
|
+
- - ! '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: 1.4.1
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
name: addressable
|
36
|
+
requirement: !ruby/object:Gem::Requirement
|
37
|
+
none: false
|
38
|
+
requirements:
|
39
|
+
- - ! '>='
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: 2.3.2
|
42
|
+
type: :runtime
|
43
|
+
prerelease: false
|
44
|
+
version_requirements: !ruby/object:Gem::Requirement
|
45
|
+
none: false
|
46
|
+
requirements:
|
47
|
+
- - ! '>='
|
48
|
+
- !ruby/object:Gem::Version
|
49
|
+
version: 2.3.2
|
50
|
+
- !ruby/object:Gem::Dependency
|
51
|
+
name: rspec
|
52
|
+
requirement: !ruby/object:Gem::Requirement
|
53
|
+
none: false
|
54
|
+
requirements:
|
55
|
+
- - ~>
|
56
|
+
- !ruby/object:Gem::Version
|
57
|
+
version: 2.8.0
|
58
|
+
type: :development
|
59
|
+
prerelease: false
|
60
|
+
version_requirements: !ruby/object:Gem::Requirement
|
61
|
+
none: false
|
62
|
+
requirements:
|
63
|
+
- - ~>
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: 2.8.0
|
66
|
+
- !ruby/object:Gem::Dependency
|
67
|
+
name: bundler
|
68
|
+
requirement: !ruby/object:Gem::Requirement
|
69
|
+
none: false
|
70
|
+
requirements:
|
71
|
+
- - ! '>='
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: 1.1.5
|
74
|
+
type: :development
|
75
|
+
prerelease: false
|
76
|
+
version_requirements: !ruby/object:Gem::Requirement
|
77
|
+
none: false
|
78
|
+
requirements:
|
79
|
+
- - ! '>='
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: 1.1.5
|
82
|
+
- !ruby/object:Gem::Dependency
|
83
|
+
name: jeweler
|
84
|
+
requirement: !ruby/object:Gem::Requirement
|
85
|
+
none: false
|
86
|
+
requirements:
|
87
|
+
- - ~>
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 1.8.4
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
none: false
|
94
|
+
requirements:
|
95
|
+
- - ~>
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: 1.8.4
|
98
|
+
- !ruby/object:Gem::Dependency
|
99
|
+
name: bio
|
100
|
+
requirement: !ruby/object:Gem::Requirement
|
101
|
+
none: false
|
102
|
+
requirements:
|
103
|
+
- - ! '>='
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: 1.4.2
|
106
|
+
type: :development
|
107
|
+
prerelease: false
|
108
|
+
version_requirements: !ruby/object:Gem::Requirement
|
109
|
+
none: false
|
110
|
+
requirements:
|
111
|
+
- - ! '>='
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: 1.4.2
|
114
|
+
- !ruby/object:Gem::Dependency
|
115
|
+
name: rdoc
|
116
|
+
requirement: !ruby/object:Gem::Requirement
|
117
|
+
none: false
|
118
|
+
requirements:
|
119
|
+
- - ~>
|
120
|
+
- !ruby/object:Gem::Version
|
121
|
+
version: '3.12'
|
122
|
+
type: :development
|
123
|
+
prerelease: false
|
124
|
+
version_requirements: !ruby/object:Gem::Requirement
|
125
|
+
none: false
|
126
|
+
requirements:
|
127
|
+
- - ~>
|
128
|
+
- !ruby/object:Gem::Version
|
129
|
+
version: '3.12'
|
130
|
+
description: ! "Bio::BaseSpace is a Ruby based SDK ported from the Python based BaseSpacePy
|
131
|
+
SDK to be used in the development of Apps and scripts for working with Illumina's
|
132
|
+
BaseSpace cloud-computing solution for next-gen sequencing data analysis.\n\n The
|
133
|
+
primary purpose of the SDK is to provide an easy-to-use Ruby environment enabling
|
134
|
+
developers to authenticate a user, retrieve data, and upload data/results from their
|
135
|
+
own analysis to BaseSpace.\n\n If you haven't already done so, you may wish to
|
136
|
+
familiarize yourself with the general BaseSpace developers documentation (https://developer.basespace.illumina.com/)
|
137
|
+
and create a new BaseSpace App to be used when working through the examples provided
|
138
|
+
in 'examples' folder."
|
139
|
+
email: joachim.baran@gmail.com
|
140
|
+
executables: []
|
141
|
+
extensions: []
|
142
|
+
extra_rdoc_files:
|
143
|
+
- README.md
|
144
|
+
files:
|
145
|
+
- .document
|
146
|
+
- .rspec
|
147
|
+
- .travis.yml
|
148
|
+
- Gemfile
|
149
|
+
- License.txt
|
150
|
+
- README.md
|
151
|
+
- Rakefile
|
152
|
+
- VERSION
|
153
|
+
- examples/0_app_triggering.rb
|
154
|
+
- examples/1_authentication.rb
|
155
|
+
- examples/2_browsing.rb
|
156
|
+
- examples/3_accessing_files.rb
|
157
|
+
- examples/4_app_result_upload.rb
|
158
|
+
- examples/5_purchasing.rb
|
159
|
+
- lib/basespace.rb
|
160
|
+
- lib/basespace/api/api_client.rb
|
161
|
+
- lib/basespace/api/base_api.rb
|
162
|
+
- lib/basespace/api/basespace_api.rb
|
163
|
+
- lib/basespace/api/basespace_error.rb
|
164
|
+
- lib/basespace/api/billing_api.rb
|
165
|
+
- lib/basespace/model.rb
|
166
|
+
- lib/basespace/model/app_result.rb
|
167
|
+
- lib/basespace/model/app_result_response.rb
|
168
|
+
- lib/basespace/model/app_session.rb
|
169
|
+
- lib/basespace/model/app_session_compact.rb
|
170
|
+
- lib/basespace/model/app_session_launch_object.rb
|
171
|
+
- lib/basespace/model/app_session_response.rb
|
172
|
+
- lib/basespace/model/application.rb
|
173
|
+
- lib/basespace/model/application_compact.rb
|
174
|
+
- lib/basespace/model/basespace_model.rb
|
175
|
+
- lib/basespace/model/coverage.rb
|
176
|
+
- lib/basespace/model/coverage_meta_response.rb
|
177
|
+
- lib/basespace/model/coverage_metadata.rb
|
178
|
+
- lib/basespace/model/coverage_response.rb
|
179
|
+
- lib/basespace/model/file.rb
|
180
|
+
- lib/basespace/model/file_response.rb
|
181
|
+
- lib/basespace/model/genome_response.rb
|
182
|
+
- lib/basespace/model/genome_v1.rb
|
183
|
+
- lib/basespace/model/list_response.rb
|
184
|
+
- lib/basespace/model/multipart_upload.rb
|
185
|
+
- lib/basespace/model/product.rb
|
186
|
+
- lib/basespace/model/project.rb
|
187
|
+
- lib/basespace/model/project_response.rb
|
188
|
+
- lib/basespace/model/purchase.rb
|
189
|
+
- lib/basespace/model/purchase_response.rb
|
190
|
+
- lib/basespace/model/purchased_product.rb
|
191
|
+
- lib/basespace/model/query_parameters.rb
|
192
|
+
- lib/basespace/model/query_parameters_purchased_product.rb
|
193
|
+
- lib/basespace/model/refund_purchase_response.rb
|
194
|
+
- lib/basespace/model/resource_list.rb
|
195
|
+
- lib/basespace/model/response_status.rb
|
196
|
+
- lib/basespace/model/run_compact.rb
|
197
|
+
- lib/basespace/model/sample.rb
|
198
|
+
- lib/basespace/model/sample_response.rb
|
199
|
+
- lib/basespace/model/user.rb
|
200
|
+
- lib/basespace/model/user_compact.rb
|
201
|
+
- lib/basespace/model/user_response.rb
|
202
|
+
- lib/basespace/model/variant.rb
|
203
|
+
- lib/basespace/model/variant_header.rb
|
204
|
+
- lib/basespace/model/variant_info.rb
|
205
|
+
- lib/basespace/model/variants_header_response.rb
|
206
|
+
- spec/basespaceapi_spec.rb
|
207
|
+
- spec/basespaceerror_spec.rb
|
208
|
+
- spec/basespacemodel_spec.rb
|
209
|
+
homepage: https://github.com/joejimbo/basespace-ruby-sdk
|
210
|
+
licenses:
|
211
|
+
- Apache, Version 2.0
|
212
|
+
post_install_message:
|
213
|
+
rdoc_options: []
|
214
|
+
require_paths:
|
215
|
+
- lib
|
216
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
217
|
+
none: false
|
218
|
+
requirements:
|
219
|
+
- - ! '>='
|
220
|
+
- !ruby/object:Gem::Version
|
221
|
+
version: '0'
|
222
|
+
segments:
|
223
|
+
- 0
|
224
|
+
hash: -907772599930210264
|
225
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
226
|
+
none: false
|
227
|
+
requirements:
|
228
|
+
- - ! '>='
|
229
|
+
- !ruby/object:Gem::Version
|
230
|
+
version: '0'
|
231
|
+
requirements: []
|
232
|
+
rubyforge_project:
|
233
|
+
rubygems_version: 1.8.23
|
234
|
+
signing_key:
|
235
|
+
specification_version: 3
|
236
|
+
summary: Bio::BaseSpace is a Ruby based SDK to be used in the development of Apps
|
237
|
+
and scripts for working with Illumina's BaseSpace cloud-computing solution for next-gen
|
238
|
+
sequencing data analysis.
|
239
|
+
test_files: []
|