More species-strain detail
This commit is contained in:
parent
f3aaa4739d
commit
7260b95937
8 changed files with 46 additions and 13 deletions
|
@ -9,7 +9,7 @@ module.exports = function(app) {
|
|||
speciesName: "One",
|
||||
typeSpecies: true,
|
||||
etymology: "Test Etymology",
|
||||
strains: [1],
|
||||
strains: [1,2],
|
||||
totalStrains: 1,
|
||||
createdAt: "0001-01-01T00:00:00Z",
|
||||
updatedAt: "0001-01-01T00:00:00Z",
|
||||
|
@ -24,7 +24,7 @@ module.exports = function(app) {
|
|||
speciesName: "Two",
|
||||
typeSpecies: true,
|
||||
etymology: "Test Etymology",
|
||||
strains: [2],
|
||||
strains: [3],
|
||||
totalStrains: 1,
|
||||
createdAt: "0001-01-01T00:00:00Z",
|
||||
updatedAt: "0001-01-01T00:00:00Z",
|
||||
|
@ -39,7 +39,7 @@ module.exports = function(app) {
|
|||
speciesName: "Three",
|
||||
typeSpecies: true,
|
||||
etymology: "Test Etymology",
|
||||
strains: [3],
|
||||
strains: [4],
|
||||
totalStrains: 1,
|
||||
createdAt: "0001-01-01T00:00:00Z",
|
||||
updatedAt: "0001-01-01T00:00:00Z",
|
||||
|
|
|
@ -23,7 +23,7 @@ module.exports = function(app) {
|
|||
},
|
||||
{
|
||||
id: 2,
|
||||
species: 2,
|
||||
species: 1,
|
||||
strainName: "XYZ",
|
||||
typeStrain: false,
|
||||
accessionNumbers: "Test Accession",
|
||||
|
@ -41,7 +41,7 @@ module.exports = function(app) {
|
|||
},
|
||||
{
|
||||
id: 3,
|
||||
species: 3,
|
||||
species: 2,
|
||||
strainName: "QRS",
|
||||
typeStrain: true,
|
||||
accessionNumbers: "Test Accession",
|
||||
|
@ -59,7 +59,7 @@ module.exports = function(app) {
|
|||
},
|
||||
{
|
||||
id: 4,
|
||||
species: 4,
|
||||
species: 3,
|
||||
strainName: "LMN",
|
||||
typeStrain: true,
|
||||
accessionNumbers: "Test Accession",
|
||||
|
|
Reference in a new issue