Rename genbank and accession
This commit is contained in:
parent
96def1539b
commit
3de9794106
3 changed files with 17 additions and 21 deletions
|
@ -8,68 +8,64 @@ module.exports = function(app) {
|
|||
speciesName: "Species One",
|
||||
strainName: "ABC",
|
||||
typeStrain: true,
|
||||
etymology: "Test Etymology",
|
||||
accessionBanks: "Test Accession",
|
||||
genbankEmblDdb: "Test Genbank",
|
||||
accessionNumbers: "Test Accession",
|
||||
genbank: "Test Genbank",
|
||||
isolatedFrom: "Location 1",
|
||||
measurements: [1,2,3,4,5],
|
||||
createdAt: "0001-01-01T00:00:00Z",
|
||||
updatedAt: "0001-01-01T00:00:00Z",
|
||||
deletedAt: null,
|
||||
author: 1,
|
||||
notes: "Test notes",
|
||||
totalMeasurements: 5,
|
||||
notes: "Test notes",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
speciesName: "Species Two",
|
||||
strainName: "XYZ",
|
||||
typeStrain: false,
|
||||
etymology: "Test Etymology",
|
||||
accessionBanks: "Test Accession",
|
||||
genbankEmblDdb: "Test Genbank",
|
||||
accessionNumbers: "Test Accession",
|
||||
genbank: "Test Genbank",
|
||||
isolatedFrom: "Location 2",
|
||||
measurements: [6,7,8,9,10],
|
||||
createdAt: "0001-01-01T00:00:00Z",
|
||||
updatedAt: "0001-01-01T00:00:00Z",
|
||||
deletedAt: null,
|
||||
notes: "Test notes",
|
||||
author: 3,
|
||||
totalMeasurements: 5,
|
||||
notes: "Test notes",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
speciesName: "Species Three",
|
||||
strainName: "QRS",
|
||||
typeStrain: true,
|
||||
etymology: "Test Etymology",
|
||||
accessionBanks: "Test Accession",
|
||||
genbankEmblDdb: "Test Genbank",
|
||||
accessionNumbers: "Test Accession",
|
||||
genbank: "Test Genbank",
|
||||
isolatedFrom: "Location 1",
|
||||
measurements: [],
|
||||
createdAt: "0001-01-01T00:00:00Z",
|
||||
updatedAt: "0001-01-01T00:00:00Z",
|
||||
notes: "Test notes",
|
||||
deletedAt: null,
|
||||
author: 1,
|
||||
totalMeasurements: 0,
|
||||
notes: "Test notes",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
speciesName: "Species Four",
|
||||
strainName: "LMN",
|
||||
typeStrain: true,
|
||||
etymology: "Test Etymology",
|
||||
accessionBanks: "Test Accession",
|
||||
genbankEmblDdb: "Test Genbank",
|
||||
accessionNumbers: "Test Accession",
|
||||
genbank: "Test Genbank",
|
||||
isolatedFrom: "Location 2",
|
||||
measurements: [],
|
||||
createdAt: "0001-01-01T00:00:00Z",
|
||||
notes: "Test notes",
|
||||
updatedAt: "0001-01-01T00:00:00Z",
|
||||
deletedAt: null,
|
||||
author: 3,
|
||||
totalMeasurements: 0,
|
||||
notes: "Test notes",
|
||||
}
|
||||
];
|
||||
|
||||
|
|
Reference in a new issue