-
Notifications
You must be signed in to change notification settings - Fork 10
Home
mattdenner edited this page Mar 11, 2011
·
7 revisions
This is the wiki for the Sequencescape API Ruby client library. Sequencescape is a LIMS written by The Wellcome Trust Sanger Institute.
- Information about the low-level Sequencescape API.
- Information about working with the Ruby client library.
- Information about extending the Ruby client.
- In bundler
gem 'sequencescape-client-api', :git => 'https://github.com/sanger/sequencescape-client-api.git', :require => 'sequencescape'
- Create an instance of
Sequencescape::Api
with correct information (see Working-with-the-Ruby-client-library). - Access resource types through that instance
- Use
find(UUID)
,create!(attributes)
,update_attributes!(attributes)
,save!
- Define associations with
has_many
andbelongs_to
(see Extending-the-Ruby-client-library)