Skip to content

Commit

Permalink
merged master into devel
Browse files Browse the repository at this point in the history
  • Loading branch information
af11-sanger committed Feb 18, 2014
2 parents fa7598d + 4437a8d commit f050612
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{{$NEXT}}

0.009 2013-05-31 07:26:05 Europe/London

Add load crispr data task.
Add create crispr plate task.

0.008 2013-05-22 13:35:12 Europe/London
Updated create project command to add species and create Cre Knockin projects.

Expand Down
3 changes: 2 additions & 1 deletion lib/LIMS2/Task/General/CreateDesignPlate.pm
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ sub build_design_plate_data {
sub _build_well_data {
my ( $self, $data ) = @_;

my $design = $self->model->retrieve_design( { id => $data->{design_id} } );
my $design = $self->model->c_retrieve_design( { id => $data->{design_id} } );
my $bac_data = $self->_build_bac_data( $design );

my %well_data;
$well_data{well_name} = $data->{well_name};
Expand Down
2 changes: 1 addition & 1 deletion lib/LIMS2/Task/YAMLDataLoader/LoadDesigns.pm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ override abstract => sub {
override create => sub {
my ( $self, $datum ) = @_;

$self->model->create_design( $datum );
$self->model->c_create_design( $datum );
};

override record_key => sub {
Expand Down

0 comments on commit f050612

Please sign in to comment.