Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
c3493a86
Commit
c3493a86
authored
14 years ago
by
tpylak
Browse files
Options
Downloads
Patches
Plain Diff
LMS-1671: screening api tests
SVN: 17297
parent
1e44bb7f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/client/api/v1/ScreeningClientApiTest.java
+42
-13
42 additions, 13 deletions
...lugin/screening/client/api/v1/ScreeningClientApiTest.java
with
42 additions
and
13 deletions
screening/source/java/ch/systemsx/cisd/openbis/plugin/screening/client/api/v1/ScreeningClientApiTest.java
+
42
−
13
View file @
c3493a86
...
@@ -34,13 +34,18 @@ import org.apache.log4j.PropertyConfigurator;
...
@@ -34,13 +34,18 @@ import org.apache.log4j.PropertyConfigurator;
import
ch.systemsx.cisd.openbis.plugin.screening.client.api.v1.ScreeningOpenbisServiceFacade.IImageOutputStreamProvider
;
import
ch.systemsx.cisd.openbis.plugin.screening.client.api.v1.ScreeningOpenbisServiceFacade.IImageOutputStreamProvider
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.DatasetIdentifier
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.DatasetIdentifier
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.ExperimentIdentifier
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.FeatureVectorDataset
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.FeatureVectorDataset
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.FeatureVectorDatasetReference
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.FeatureVectorDatasetReference
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.FeatureVectorWithDescription
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.IDatasetIdentifier
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.IDatasetIdentifier
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.ImageDatasetMetadata
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.ImageDatasetMetadata
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.ImageDatasetReference
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.ImageDatasetReference
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.MaterialIdentifier
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.MaterialTypeIdentifier
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.Plate
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.Plate
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.PlateImageReference
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.PlateImageReference
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.PlateWellReferenceWithDatasets
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.WellPosition
;
import
ch.systemsx.cisd.openbis.plugin.screening.shared.api.v1.dto.WellPosition
;
/**
/**
...
@@ -73,6 +78,31 @@ public class ScreeningClientApiTest
...
@@ -73,6 +78,31 @@ public class ScreeningClientApiTest
System
.
err
.
println
(
"Authentication failed: check the user name and password."
);
System
.
err
.
println
(
"Authentication failed: check the user name and password."
);
return
;
return
;
}
}
List
<
ExperimentIdentifier
>
experiments
=
facade
.
listExperiments
();
System
.
out
.
println
(
"Experiments: "
+
experiments
);
MaterialIdentifier
gene
=
new
MaterialIdentifier
(
MaterialTypeIdentifier
.
GENE
,
"OPRS1"
);
ExperimentIdentifier
experimentIdentifer
=
experiments
.
get
(
0
);
List
<
PlateWellReferenceWithDatasets
>
plateWells
=
facade
.
listPlateWells
(
experimentIdentifer
,
gene
,
true
);
System
.
out
.
println
(
String
.
format
(
"Wells with gene '%s' in experiment '%s': %s"
,
gene
,
experimentIdentifer
,
plateWells
));
List
<
FeatureVectorWithDescription
>
featuresForPlateWells
=
facade
.
loadFeaturesForPlateWells
(
experimentIdentifer
,
gene
,
null
);
System
.
out
.
println
(
"Features for wells: "
+
featuresForPlateWells
);
List
<
FeatureVectorWithDescription
>
featuresForPlateWellsCheck
=
facade
.
loadFeaturesForDatasetWellReferences
(
facade
.
convertToFeatureVectorDatasetWellIdentifier
(
plateWells
),
null
);
if
(
featuresForPlateWellsCheck
.
equals
(
featuresForPlateWells
)
==
false
)
{
throw
new
IllegalStateException
(
String
.
format
(
"Inconsistent results to fetch feature vectors, expected:\n%s\nbut got:\n%s"
,
featuresForPlateWells
,
featuresForPlateWellsCheck
));
}
List
<
Plate
>
plates
=
facade
.
listPlates
();
List
<
Plate
>
plates
=
facade
.
listPlates
();
System
.
out
.
println
(
"Plates: "
+
plates
);
System
.
out
.
println
(
"Plates: "
+
plates
);
List
<
ImageDatasetReference
>
imageDatasets
=
facade
.
listImageDatasets
(
plates
);
List
<
ImageDatasetReference
>
imageDatasets
=
facade
.
listImageDatasets
(
plates
);
...
@@ -110,9 +140,8 @@ public class ScreeningClientApiTest
...
@@ -110,9 +140,8 @@ public class ScreeningClientApiTest
facade
.
logout
();
facade
.
logout
();
}
}
private
static
List
<
IDatasetIdentifier
>
getFirstFive
(
private
static
List
<
IDatasetIdentifier
>
getFirstFive
(
IScreeningOpenbisServiceFacade
facade
,
IScreeningOpenbisServiceFacade
facade
,
List
<?
extends
DatasetIdentifier
>
identfiers
)
List
<?
extends
DatasetIdentifier
>
identfiers
)
{
{
List
<
IDatasetIdentifier
>
result
=
new
ArrayList
<
IDatasetIdentifier
>();
List
<
IDatasetIdentifier
>
result
=
new
ArrayList
<
IDatasetIdentifier
>();
...
@@ -141,7 +170,7 @@ public class ScreeningClientApiTest
...
@@ -141,7 +170,7 @@ public class ScreeningClientApiTest
{
{
File
dir
=
new
File
(
datasetIdentifier
.
getDatasetCode
());
File
dir
=
new
File
(
datasetIdentifier
.
getDatasetCode
());
dir
.
mkdir
();
dir
.
mkdir
();
for
(
int
wellRow
=
1
;
wellRow
<=
5
;
wellRow
++)
for
(
int
wellRow
=
1
;
wellRow
<=
5
;
wellRow
++)
{
{
for
(
int
wellCol
=
1
;
wellCol
<=
5
;
wellCol
++)
for
(
int
wellCol
=
1
;
wellCol
<=
5
;
wellCol
++)
...
@@ -150,10 +179,10 @@ public class ScreeningClientApiTest
...
@@ -150,10 +179,10 @@ public class ScreeningClientApiTest
{
{
for
(
int
tile
=
0
;
tile
<
1
;
tile
++)
for
(
int
tile
=
0
;
tile
<
1
;
tile
++)
{
{
PlateImageReference
imageRef
=
PlateImageReference
imageRef
=
new
PlateImageReference
(
wellRow
,
wellCol
,
tile
,
"dapi"
,
new
PlateImageReference
(
wellRow
,
wellCol
,
tile
,
"dapi"
,
datasetIdentifier
);
datasetIdentifier
);
imageRefs
.
add
(
imageRef
);
imageRefs
.
add
(
imageRef
);
imageFiles
.
add
(
new
File
(
dir
,
createImageFileName
(
imageRef
)));
imageFiles
.
add
(
new
File
(
dir
,
createImageFileName
(
imageRef
)));
}
}
...
@@ -180,13 +209,13 @@ public class ScreeningClientApiTest
...
@@ -180,13 +209,13 @@ public class ScreeningClientApiTest
try
try
{
{
facade
.
loadImages
(
imageReferences
,
new
IImageOutputStreamProvider
()
facade
.
loadImages
(
imageReferences
,
new
IImageOutputStreamProvider
()
{
public
OutputStream
getOutputStream
(
PlateImageReference
imageReference
)
throws
IOException
{
{
return
imageRefToFileMap
.
get
(
imageReference
);
public
OutputStream
getOutputStream
(
PlateImageReference
imageReference
)
}
throws
IOException
});
{
return
imageRefToFileMap
.
get
(
imageReference
);
}
});
}
finally
}
finally
{
{
closeOutputStreams
(
imageRefToFileMap
.
values
());
closeOutputStreams
(
imageRefToFileMap
.
values
());
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment