Skip to content

Commit

Permalink
Merge pull request #137 from wtsi-npg/devel
Browse files Browse the repository at this point in the history
merge from devel to master to create release 6.6.0
  • Loading branch information
mgcam authored Nov 27, 2019
2 parents aa14c32 + f8f2fd1 commit 10b6313
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
LIST OF CHANGES
---------------

release 6.6.0
- add instrument_external_name column to the iseq_run_lane_metrics
table

release 6.5.0
- more detailed comments for some columns.
- 'annotation' column reduced to 15 chars since it's not free text
Expand Down
14 changes: 12 additions & 2 deletions lib/WTSI/DNAP/Warehouse/Schema/Result/IseqRunLaneMetric.pm
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,14 @@ Sequencing lane level QC outcome, a result of either manual or automatic assessm
is_nullable: 1
size: 32
=head2 instrument_external_name
data_type: 'char'
is_nullable: 1
size: 10
Name assigned to the instrument by the manufacturer
=head2 instrument_model
data_type: 'char'
Expand Down Expand Up @@ -286,6 +294,8 @@ __PACKAGE__->add_columns(
{ data_type => 'tinyint', is_nullable => 1 },
'instrument_name',
{ data_type => 'char', is_nullable => 1, size => 32 },
'instrument_external_name',
{ data_type => 'char', is_nullable => 1, size => 10 },
'instrument_model',
{ data_type => 'char', is_nullable => 1, size => 64 },
'instrument_side',
Expand Down Expand Up @@ -422,8 +432,8 @@ __PACKAGE__->has_many(
);


# Created by DBIx::Class::Schema::Loader v0.07049 @ 2018-12-11 15:01:40
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:bks8/zNg4N/AQKBf72TNNw
# Created by DBIx::Class::Schema::Loader v0.07049 @ 2019-11-26 11:54:35
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:D+Aibmddc0msHqDxNtzrow

our $VERSION = '0';

Expand Down
4 changes: 4 additions & 0 deletions scripts/update_schema_6.6.0.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
ALTER TABLE `iseq_run_lane_metrics` \
ADD COLUMN `instrument_external_name` char(10) DEFAULT NULL \
COMMENT 'Name assigned to the instrument by the manufacturer' \
AFTER `instrument_name`;

0 comments on commit 10b6313

Please sign in to comment.