Skip to content

Commit

Permalink
renamed mm to noJ
Browse files Browse the repository at this point in the history
  • Loading branch information
Lisa Fischer committed Oct 7, 2024
1 parent 3f0ee02 commit 9cf2fee
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

namespace MLL\Utils\Microplate;

class CoordinateSystem2x16MM extends CoordinateSystem
class CoordinateSystem2x16NoJ extends CoordinateSystem
{
/** Duplicates @see CoordinateSystem::positionsCount() for static contexts. */
public const POSITIONS_COUNT = 32;

/** AE-347: The Tecan MM block has no J on its rows */
/** The Tecan MM block has no J on its rows */
public function rows(): array
{
return ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'K', 'L', 'M', 'N', 'O', 'P', 'Q'];
return [...range('A', 'I'), ...range('K', 'Q')];
}

public function columns(): array
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

use MLL\GraphQLScalars\Regex;

class Row16MM extends Regex
class Row16NoJ extends Regex
{
public ?string $description = 'Represents a row in a coordinate system with 16 rows without the letter J (see AE-347)';
public ?string $description = 'Represents a row in a coordinate system with 16 rows without the letter J';

public static function regex(): string
{
Expand Down
4 changes: 2 additions & 2 deletions src/Tecan/Rack/MasterMixRack.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace MLL\Utils\Tecan\Rack;

use MLL\Utils\Microplate\CoordinateSystem2x16MM;
use MLL\Utils\Microplate\CoordinateSystem2x16NoJ;

/**
* @template TContent
Expand All @@ -13,7 +13,7 @@ class MasterMixRack extends BaseRack
{
public function __construct()
{
parent::__construct(new CoordinateSystem2x16MM());
parent::__construct(new CoordinateSystem2x16NoJ());
}

public function type(): string
Expand Down

0 comments on commit 9cf2fee

Please sign in to comment.