Skip to content

Commit

Permalink
Remove large experiments from local env
Browse files Browse the repository at this point in the history
  • Loading branch information
ke4 committed Mar 1, 2024
1 parent 59b3aff commit 28266c3
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 21 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void payloadIsValidJson() throws Exception {

@Test
public void geneIdContainingDotIsNotTruncated() throws Exception {
String geneId = solrUtils.fetchRandomGeneOfSpecies("Arabidopsis_lyrata"); // has gene IDs containing dots
String geneId = solrUtils.fetchRandomGeneOfSpecies("Schizosaccharomyces_pombe"); // has gene IDs containing dots

if(!geneId.isEmpty()) {
this.mockMvc
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void setUp() {

@Test
void getTrackFile() throws Exception {
this.mockMvc.perform(get(BASELINE_URL_TEMPLATE.format(new Object[] {"E-MTAB-5423", "g391"})))
this.mockMvc.perform(get(BASELINE_URL_TEMPLATE.format(new Object[] {"E-MTAB-5422", "g2_g1"})))
.andExpect(status().isOk());
}

Expand All @@ -77,7 +77,7 @@ void getTrackOfUnknownExperiment() throws Exception {
@Test
void getUnknownTrackEndsUpIn404NotFound() throws Exception {
MvcResult result =
this.mockMvc.perform(get(BASELINE_URL_TEMPLATE.format(new Object[] {"E-MTAB-5423", "gFooBar"})))
this.mockMvc.perform(get(BASELINE_URL_TEMPLATE.format(new Object[] {"E-MTAB-5422", "gFooBar"})))
.andExpect(status().isOk())
.andReturn();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import com.google.gson.JsonObject;
import org.hamcrest.Matchers;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.TestInstance;
Expand All @@ -29,7 +30,6 @@
import static org.hamcrest.Matchers.greaterThan;
import static org.hamcrest.Matchers.not;
import static org.hamcrest.core.Is.is;
import static org.junit.Assert.assertTrue;
import static uk.ac.ebi.atlas.utils.GsonProvider.GSON;

@ExtendWith(SpringExtension.class)
Expand Down Expand Up @@ -72,7 +72,7 @@ void geneExpressedInBaselineAndDifferentialExperiments() {
JsonObject result = baselineAnalyticsSearchService.findFacetsForTreeSearch(SemanticQuery.create(BASELINE_GENE),
SemanticQuery.create(), new Species("Foous baris", SpeciesProperties.UNKNOWN));
assertThat(result.entrySet(), not(Matchers.empty()));
assertTrue("This Ensembl gene has a homo sapiens result", result.has("homo sapiens"));
Assertions.assertTrue(result.has("homo sapiens"), "This Ensembl gene has a homo sapiens result");
}

@Test
Expand Down Expand Up @@ -106,11 +106,11 @@ void nonExistentGene() {
@Test
void differentialAnalyticsSearchServiceHasTheRightReturnFormat() {
JsonObject result =
differentialAnalyticsSearchService.fetchResults(SemanticQuery.create("GO:0008150"), EMPTY_QUERY);
differentialAnalyticsSearchService.fetchResults(SemanticQuery.create("GO:2000651"), EMPTY_QUERY);
testDifferentialResultsAreInRightFormat(result);
}

private ImmutableList<String> fieldsNeededInDifferentialResults = ImmutableList.of(
private final ImmutableList<String> fieldsNeededInDifferentialResults = ImmutableList.of(
"species",
"kingdom",
"experimentType",
Expand All @@ -127,14 +127,14 @@ void differentialAnalyticsSearchServiceHasTheRightReturnFormat() {
"colour",
"id");

private ImmutableList<String> fieldsNeededInMicroarrayDifferentialResults =
private final ImmutableList<String> fieldsNeededInMicroarrayDifferentialResults =
ImmutableList.<String>builder()
.addAll(fieldsNeededInDifferentialResults)
.add("tStatistic")
.build();

private void testDifferentialResultsAreInRightFormat(JsonObject result) {
assertTrue(GSON.toJson(result), result.has("results"));
Assertions.assertTrue(result.has("results"), GSON.toJson(result));
assertThat(result.get("results").getAsJsonArray().size(), greaterThan(0));

for (JsonElement jsonElement: result.get("results").getAsJsonArray()) {
Expand All @@ -143,11 +143,11 @@ private void testDifferentialResultsAreInRightFormat(JsonObject result) {

if (experimentType.isMicroarray()) {
for (String fieldName: fieldsNeededInMicroarrayDifferentialResults) {
assertTrue("result has " + fieldName, jsonElement.getAsJsonObject().has(fieldName));
Assertions.assertTrue(jsonElement.getAsJsonObject().has(fieldName), "result has " + fieldName);
}
} else {
for (String fieldName: fieldsNeededInDifferentialResults) {
assertTrue("result has " + fieldName, jsonElement.getAsJsonObject().has(fieldName));
Assertions.assertTrue(jsonElement.getAsJsonObject().has(fieldName), "result has " + fieldName);
}
}
}
Expand Down
6 changes: 1 addition & 5 deletions app/src/test/resources/fixtures/experiment-fixture.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, do
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MEXP-1810', 'MICROARRAY_1COLOUR_MRNA_DIFFERENTIAL', 'a137fc25-4f99-41f0-a5b8-b598d6175085', '2021-01-22 21:08:41.599319', '19615088', '10.1186/1471-2164-10-325', false, 'Caenorhabditis elegans', '2021-01-22 21:08:41.599319');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MEXP-1968', 'MICROARRAY_1COLOUR_MRNA_DIFFERENTIAL', '65232ab9-def8-402d-8ed6-7a8cb0497855', '2021-01-22 21:08:41.630668', '19363488', '10.1038/ncb1866', false, 'Mus musculus', '2021-01-22 21:08:41.630668');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-1913', 'RNASEQ_MRNA_DIFFERENTIAL', '6a36eb1f-65ad-44e2-b78e-ebac128e7495', '2021-01-22 21:08:41.666076', null, null, false, 'Oryza sativa Indica group', '2021-01-22 21:08:41.666076');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-2770', 'RNASEQ_MRNA_BASELINE', '599f36c7-e447-42fa-8a9b-e093c88614ab', '2021-01-22 21:08:46.984579', '22460905', '10.1038/nature11003', false, 'Homo sapiens', '2021-01-22 21:08:46.984579');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-2836', 'RNASEQ_MRNA_BASELINE', '41978942-b362-46b4-aa1f-011d4a07ac16', '2021-01-22 21:08:47.068539', '26694548, 26870787, 5613900', '10.1126/science.1260419, 10.1371/journal.pone.0145301, None', false, 'Homo sapiens', '2021-01-22 21:08:47.068539');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-2909', 'RNASEQ_MRNA_DIFFERENTIAL', '4e6c212c-1d70-4275-81c1-d3e25d0bd09a', '2021-01-22 21:08:47.092711', null, null, false, 'Anas platyrhynchos', '2021-01-22 21:08:47.092711');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-3827', 'RNASEQ_MRNA_BASELINE', 'f5e6d655-6bbb-4abb-8c96-a2b595f1ad6f', '2021-01-22 21:08:47.130728', null, null, false, 'Homo sapiens', '2021-01-22 21:08:47.130728');
Expand All @@ -17,14 +16,11 @@ INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, do
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-451', 'RNASEQ_MRNA_BASELINE', 'dc592ad1-d3d5-4284-bf98-6cbfe4472dfe', '2021-01-22 21:08:47.237945', '22253936', '10.1371/journal.pntd.0001455', false, 'Schistosoma mansoni', '2021-01-22 21:08:47.237945');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-4559', 'RNASEQ_MRNA_DIFFERENTIAL', '4d48908f-ef54-44b3-9405-35cdf6acd08e', '2021-01-22 21:08:47.259809', null, null, false, 'Zea mays subsp. mays', '2021-01-22 21:08:47.259809');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-5128', 'MICROARRAY_1COLOUR_MRNA_DIFFERENTIAL', '5550f8a9-2055-419b-864c-ab2c9d91d9d2', '2021-01-22 21:08:47.284917', null, null, false, 'Saccharomyces cerevisiae', '2021-01-22 21:08:47.284917');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-5200', 'RNASEQ_MRNA_BASELINE', '2e13c434-4da1-40fb-b9e3-af92fed0c959', '2021-01-22 21:08:48.092384', null, '10.1038/s41586-020-1969-6', false, 'Homo sapiens', '2021-01-22 21:08:48.092384');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-5422', 'RNASEQ_MRNA_DIFFERENTIAL', '2ec933ae-3344-4601-9279-dc58633cb940', '2021-01-22 21:08:51.054533', null, null, false, 'Zea mays', '2021-01-22 21:08:51.054533');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-5423', 'RNASEQ_MRNA_BASELINE', '3129b93d-cf5e-49b3-aebb-e7da1af3fe44', '2021-01-22 21:09:02.204925', null, null, false, 'Homo sapiens', '2021-01-22 21:09:02.204925');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-5633', 'RNASEQ_MRNA_DIFFERENTIAL', 'f4beab2e-9657-44c0-b29d-51b0a7bcf6e7', '2021-01-22 21:09:02.258675', null, null, false, 'Mus musculus domesticus', '2021-01-22 21:09:02.258675');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-5941', 'RNASEQ_MRNA_DIFFERENTIAL', 'b94045cd-6ebf-4eba-8880-0c7bf60ac5a3', '2021-01-22 21:09:02.279798', null, null, false, 'Oryza sativa Japonica Group', '2021-01-22 21:09:02.279798');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-TABM-713', 'MICROARRAY_1COLOUR_MICRORNA_DIFFERENTIAL', '577cb0f0-77da-41a6-8a40-e2d87d26462f', '2021-01-22 21:09:02.324879', '19823581', '10.1371/journal.pone.0007405', false, 'Homo sapiens', '2021-01-22 21:09:02.324879');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-5214', 'RNASEQ_MRNA_BASELINE', 'c582039b-9cc4-456c-82e5-1a5c4ca31a2e', '2021-01-27 19:57:33.246907', '25954001', '10.1126/science.1262110', false, 'Homo sapiens', '2021-01-27 19:57:33.246907');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-PROT-1', 'PROTEOMICS_BASELINE', 'b9e6f93b-2eaf-4453-bdd1-f8e6a20e989b', '2021-01-28 11:27:20.638822', '24669763, 24870542', '10.1021/pr401169d, 10.1038/nature13302', false, 'Homo sapiens', '2021-01-28 11:27:20.638822');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-4106', 'RNASEQ_MRNA_DIFFERENTIAL', '89319682-55b6-4b4b-a5ef-f50e1e0915ea', '2021-01-22 21:08:47.172392', null, null, true, 'Schizosaccharomyces pombe', '2021-01-22 21:08:47.172392');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-MTAB-4106', 'RNASEQ_MRNA_DIFFERENTIAL', '89319682-55b6-4b4b-a5ef-f50e1e0915ea', '2021-01-22 21:08:47.172392', null, null, false, 'Schizosaccharomyces pombe', '2021-01-22 21:08:47.172392');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-PROT-28', 'PROTEOMICS_BASELINE_DIA', '06a070de-bb86-437f-9e3f-8ab50fcb7ee9', '2021-10-28 14:41:36.785096', '27561551', '10.1038/ncomms12645', false, 'Homo sapiens', '2021-10-28 14:41:36.785096');
INSERT INTO experiment (accession, type, access_key, last_update, pubmed_ids, dois, private, species, load_date) VALUES ('E-PROT-39', 'PROTEOMICS_DIFFERENTIAL', '7cb4ea96-ab27-4b2b-83dd-eeb042e6bb15', '2022-01-07 10:53:23.911751', '30691479', '10.1186/s13041-019-0430-y', false, 'Homo sapiens', '2020-08-06 16:47:30.425804');
7 changes: 2 additions & 5 deletions app/src/test/resources/fixtures/small-experiment-fixture.sql
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
--SELECT * FROM experiment
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-ERAD-475', 'RNASEQ_MRNA_BASELINE', 'Danio rerio', 'b9d97ed2-5781-4612-b5bc-154b742407a0', FALSE, '2018-09-25 14:47:05.650556', '2018-09-25 14:47:05.650556', NULL, NULL);
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MEXP-1968', 'MICROARRAY_1COLOUR_MRNA_DIFFERENTIAL', 'Mus musculus', '61307087-0959-4a9f-8903-d32d791c5a2a', FALSE, '2018-09-25 14:47:05.696830', '2018-09-25 14:47:05.696830', '19363488', NULL);
--INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-2770', 'RNASEQ_MRNA_BASELINE', 'Homo sapiens', '7906ab89-00d8-4496-a03a-7e45917fcf65', FALSE, '2018-09-25 14:47:09.712458', '2018-09-25 14:47:09.712458', '22460905', NULL);
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-3827', 'RNASEQ_MRNA_BASELINE', 'Homo sapiens', '29954c1b-e124-44a2-ac54-30e1f56b388b', FALSE, '2018-09-25 14:47:09.764754', '2018-09-25 14:47:09.764754', NULL, NULL);
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-4559', 'RNASEQ_MRNA_DIFFERENTIAL', 'Zea mays subsp. mays', '0f313ed3-b2a7-432b-955d-4b32acc6d427', FALSE, '2018-09-25 14:47:09.782017', '2018-09-25 14:47:09.782017', NULL, NULL);
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-5200', 'RNASEQ_MRNA_BASELINE', 'Homo sapiens', 'e714ed0f-66cd-45bc-be31-32db465ced85', FALSE, '2018-09-25 14:47:10.355291', '2018-09-25 14:47:10.355291', NULL, NULL);
Expand All @@ -11,15 +10,13 @@ INSERT INTO experiment (accession, type, species, access_key, private, load_date
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-2909', 'RNASEQ_MRNA_DIFFERENTIAL', 'Anas platyrhynchos', '0539b3c6-f5fe-41fe-b330-3f77767581f8', FALSE, '2018-09-25 14:47:10.494002', '2018-09-25 14:47:10.494002', NULL, NULL);
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-3834', 'RNASEQ_MRNA_DIFFERENTIAL', 'Oryza sativa', 'c555596b-7347-4986-827c-daadbbab068a', FALSE, '2018-09-25 14:47:10.502111', '2018-09-25 14:47:10.502111', NULL, NULL);
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-5128', 'MICROARRAY_1COLOUR_MRNA_DIFFERENTIAL', 'Saccharomyces cerevisiae', '6e50909b-7380-4268-a142-90028bfddc72', FALSE, '2018-09-25 14:47:10.521114', '2018-09-25 14:47:10.521114', NULL, NULL);
--INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-5214', 'RNASEQ_MRNA_BASELINE', 'Homo sapiens', 'ab4819c9-1ed3-46b7-969e-afb0f36515f2', FALSE, '2018-09-25 14:47:13.862734', '2018-09-25 14:47:13.862734', '25954001', NULL);
--INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-5423', 'RNASEQ_MRNA_BASELINE', 'Homo sapiens', 'c552df94-f38c-4b02-9b7b-43787eaec211', FALSE, '2018-09-25 14:47:22.303555', '2018-09-25 14:47:22.303555', NULL, NULL);
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-5941', 'RNASEQ_MRNA_DIFFERENTIAL', 'Oryza sativa Japonica Group', '1e123c89-1771-4d47-a133-d13bf832d11c', FALSE, '2018-09-25 14:47:22.339414', '2018-09-25 14:47:22.339414', NULL, NULL);
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-TABM-713', 'MICROARRAY_1COLOUR_MICRORNA_DIFFERENTIAL', 'Homo sapiens', '261799f4-ab40-472b-a330-0e8dd28444e3', FALSE, '2018-09-25 14:47:22.349442', '2018-09-25 14:47:22.349442', '19823581', NULL);
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-GEOD-43049', 'MICROARRAY_2COLOUR_MRNA_DIFFERENTIAL', 'Homo sapiens', '5a1d29f7-9eba-42c3-a722-9370cb5e9b0f', FALSE, '2018-09-25 14:49:42.707984', '2018-09-25 14:49:42.707984', NULL, NULL);
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-1913', 'RNASEQ_MRNA_DIFFERENTIAL', 'Oryza sativa Indica group', 'f23d4696-6c18-4091-affd-715458fb0bc8', FALSE, '2018-10-04 15:56:28.554803', '2018-10-04 15:56:28.554803', NULL, NULL);
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MEXP-1810', 'MICROARRAY_1COLOUR_MRNA_DIFFERENTIAL', 'Caenorhabditis elegans', '50f28f5f-e748-4dd8-9ac8-a74fe393d6a1', FALSE, '2018-09-25 20:08:56.844377', '2018-09-25 20:08:56.844377', '19615088', NULL);
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MAXD-6', 'MICROARRAY_1COLOUR_MRNA_DIFFERENTIAL', 'Drosophila melanogaster', '9000547c-964d-4643-87b7-a53b41144ba5', FALSE, '2018-10-04 10:42:18.685367', '2018-10-04 10:42:18.685367', '16277749', NULL);
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-4401', 'RNASEQ_MRNA_BASELINE', 'Brachypodium distachyon', '59e227ef-159c-434e-b621-08b5cf02b4be', FALSE, '2018-10-05 14:21:12.972882', '2018-10-05 14:21:12.972882', '22443345', NULL);
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-2836', 'RNASEQ_MRNA_BASELINE', 'Homo sapiens', 'be0f3bf4-5900-4bd0-94cd-34f3765de5e5', FALSE, '2018-10-05 15:03:22.352400', '2018-10-05 15:03:22.352400', '26694548, 5613900, 27699219', NULL);
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-4106', 'RNASEQ_MRNA_DIFFERENTIAL', 'Schizosaccharomyces pombe', '1483a23f-4853-4583-b10c-5ab333bf522f', true, '2018-10-05 15:23:03.254754', '2018-10-05 15:23:03.254754', NULL, NULL);
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-2836', 'RNASEQ_MRNA_BASELINE', 'Homo sapiens', 'be0f3bf4-5900-4bd0-94cd-34f3765de5e5', TRUE, '2018-10-05 15:03:22.352400', '2018-10-05 15:03:22.352400', '26694548, 5613900, 27699219', NULL);
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-4106', 'RNASEQ_MRNA_DIFFERENTIAL', 'Schizosaccharomyces pombe', '1483a23f-4853-4583-b10c-5ab333bf522f', FALSE, '2018-10-05 15:23:03.254754', '2018-10-05 15:23:03.254754', NULL, NULL);
INSERT INTO experiment (accession, type, species, access_key, private, load_date, last_update, pubmed_ids, dois) VALUES ('E-MTAB-451', 'RNASEQ_MRNA_BASELINE', 'Schistosoma mansoni', '240bf90b-5e7b-4d1b-a9c0-cae7a2e92841', FALSE, '2018-10-06 14:18:30.525142', '2018-10-06 14:18:30.525142', '22253936', NULL);

0 comments on commit 28266c3

Please sign in to comment.