-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #123 from sanger/develop
Develop into Master
- Loading branch information
Showing
3 changed files
with
29 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# frozen_string_literal: true | ||
|
||
# Add tag2 information to the pac_bio_run table so we can do dual indexing | ||
class AddTag2ToPacBioRun < ActiveRecord::Migration | ||
def change | ||
change_table :pac_bio_run, bulk: true do |t| | ||
t.string 'tag2_sequence', limit: 30, comment: 'Tag sequence for tag 2', after: :tag_set_name | ||
t.string 'tag2_set_id_lims', limit: 20, comment: 'LIMs-specific identifier of the tag set for tag 2', after: :tag2_sequence | ||
t.string 'tag2_set_name', limit: 100, comment: 'WTSI-wide tag set name for tag 2', after: :tag2_set_id_lims | ||
t.string 'tag2_identifier', limit: 30, comment: 'The position of tag2 within the tag group', after: :tag2_set_name | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters