-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added column replicates in CSV box creation (#1983)
* Added column replicates in CSV box creation * Specs fixed * Update app/models/box_form.rb Co-authored-by: Julien Portalier <[email protected]> --------- Co-authored-by: Julien Portalier <[email protected]>
- Loading branch information
1 parent
171f6dd
commit 792b728
Showing
8 changed files
with
41 additions
and
43 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
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
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 |
---|---|---|
@@ -1,9 +1,5 @@ | ||
Batch,Concentration,Distractor,Instructions | ||
batch1,100,no,Add 175 ml of media | ||
batch1,100,no,Add 175 ml of media | ||
batch1,1000,no,Add 175 ml of media | ||
batch1,1000,no,Add 175 ml of media | ||
batch2,2,yes,Add 250 ml of media | ||
batch2,2,yes,Add 250 ml of media | ||
batch2,200,yes,Add 100 ml of media | ||
batch2,200,yes,Add 100 ml of media | ||
Batch,Concentration,Distractor,Instructions,Replicates | ||
borrar,100,no,Add 175 ml of media,2 | ||
borrar,1000,no,Add 175 ml of media,2 | ||
Blank,2,yes,Add 250 ml of media,4 | ||
Blank,200,yes,Add 100 ml of media,4 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
Batch,Concentration,Distractor,Instructions | ||
DISTRACTOR,10,no,Add 10ml | ||
DISTRACTOR,10,no,Add 10ml | ||
DISTRACTOR,20,no,Add 10ml | ||
DISTRACTOR,20,no,Add 10ml | ||
Batch,Concentration,Distractor,Instructions,Replicates | ||
DISTRACTOR,10,no,Add 10ml,2 | ||
DISTRACTOR,20,no,Add 10ml,2 |
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 |
---|---|---|
@@ -1,7 +1,4 @@ | ||
Batch,Concentration,Distractor,Instructions | ||
VIRUS,10,no,Add 10ml | ||
VIRUS,10,no,Add 10ml | ||
DISTRACTOR,10,yes,Add 10ml | ||
DISTRACTOR,10,yes,Add 10ml | ||
DISTRACTOR,20,yes,Add 10ml | ||
DISTRACTOR,20,yes,Add 10ml | ||
Batch,Concentration,Distractor,Instructions,Replicates | ||
VIRUS,10,no,Add 10ml,2 | ||
DISTRACTOR,10,yes,Add 10ml,2 | ||
DISTRACTOR,20,yes,Add 10ml,2 |
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,3 @@ | ||
VIRUS,10,no,Add 10ml,2 | ||
DISTRACTOR,10,yes,Add 10ml,2 | ||
DISTRACTOR,20,yes,Add 10ml,2 |