long |
GenericRepositoryObjectWrapper.addAndReplaceFile(Client client,
java.io.File file) |
Uploads a file, links it to the object and unlinks previous files with the same name, or deletes them if they're
orphaned.
|
long |
GenericRepositoryObjectWrapper.addAndReplaceFile(Client client,
java.io.File file,
GenericRepositoryObjectWrapper.ReplacePolicy policy) |
Uploads a file, links it to the object and unlinks or deletes previous files with the same name.
|
void |
GenericRepositoryObjectWrapper.addAndReplaceTable(Client client,
TableWrapper table) |
Adds a table to the object in OMERO and unlinks previous tables with the same name, or deletes them if they're
orphaned.
|
void |
GenericRepositoryObjectWrapper.addAndReplaceTable(Client client,
TableWrapper table,
GenericRepositoryObjectWrapper.ReplacePolicy policy) |
Adds a table to the object in OMERO and unlinks or deletes previous tables with the same name.
|
java.util.List<java.io.File> |
ImageWrapper.download(Client client,
java.lang.String path) |
Downloads the original files from the server.
|
java.util.List<DatasetWrapper> |
ImageWrapper.getDatasets(Client client) |
Retrieves the datasets containing this image
|
java.util.List<ImageWrapper> |
ImageWrapper.getFilesetImages(Client client) |
Returns the list of images sharing the same fileset as the current image.
|
FolderWrapper |
ImageWrapper.getFolder(Client client,
java.lang.Long folderId) |
Gets the folder with the specified id on OMERO.
|
java.util.List<ImageWrapper> |
DatasetWrapper.getImagesTagged(Client client,
TagAnnotationWrapper tag) |
Gets all images in the dataset tagged with a specified tag from OMERO.
|
java.util.List<ImageWrapper> |
DatasetWrapper.getImagesTagged(Client client,
java.lang.Long tagId) |
Gets all images in the dataset tagged with a specified tag from OMERO.
|
java.util.List<ImageWrapper> |
ProjectWrapper.getImagesTagged(Client client,
TagAnnotationWrapper tag) |
Gets all images in the project tagged with a specified tag from OMERO.
|
java.util.List<ImageWrapper> |
ProjectWrapper.getImagesTagged(Client client,
java.lang.Long tagId) |
Gets all images in the project tagged with a specified tag from OMERO.
|
java.util.List<ProjectWrapper> |
DatasetWrapper.getProjects(Client client) |
Retrieves the projects containing this dataset.
|
java.util.List<ProjectWrapper> |
ImageWrapper.getProjects(Client client) |
Retrieves the projects containing this image
|
java.util.List<ScreenWrapper> |
ImageWrapper.getScreens(Client client) |
Retrieves the screens containing this image
|
java.util.List<ScreenWrapper> |
PlateWrapper.getScreens(Client client) |
Retrieves the screens containing this dataset.
|
java.awt.image.BufferedImage |
ImageWrapper.getThumbnail(Client client,
int size) |
Retrieves the image thumbnail of the specified size.
|
java.util.List<java.lang.Long> |
DatasetWrapper.importAndReplaceImages(Client client,
java.lang.String path) |
Imports one image file to the dataset in OMERO and replace older images sharing the same name after copying their
annotations and ROIs, and concatenating the descriptions (on new lines) by unlinking them.
|
java.util.List<java.lang.Long> |
DatasetWrapper.importAndReplaceImages(Client client,
java.lang.String path,
GenericRepositoryObjectWrapper.ReplacePolicy policy) |
Imports one image file to the dataset in OMERO and replace older images sharing the same name after copying their
annotations and ROIs, and concatenating the descriptions (on new lines) by unlinking or even deleting them.
|
java.util.List<java.lang.Long> |
DatasetWrapper.importImage(Client client,
java.lang.String path) |
Imports one image file to the dataset in OMERO.
|
protected static java.util.List<java.lang.Long> |
GenericRepositoryObjectWrapper.importImage(GatewayWrapper client,
DataObject target,
java.lang.String path) |
Imports one image file to the target in OMERO.
|
java.util.List<java.lang.Long> |
ScreenWrapper.importImage(GatewayWrapper client,
java.lang.String path) |
Imports one image file to the screen in OMERO.
|
boolean |
DatasetWrapper.importImages(Client client,
java.lang.String... paths) |
Imports all images candidates in the paths to the dataset in OMERO.
|
protected static boolean |
GenericRepositoryObjectWrapper.importImages(GatewayWrapper client,
DataObject target,
java.lang.String... paths) |
Imports all images candidates in the paths to the target in OMERO.
|
boolean |
ScreenWrapper.importImages(GatewayWrapper client,
java.lang.String... paths) |
Imports all images candidates in the paths to the screen in OMERO.
|
boolean |
ImageWrapper.isOrphaned(Client client) |
Checks if image is orphaned (not in a WellSample nor linked to a dataset).
|
void |
ProjectWrapper.removeDataset(Client client,
DatasetWrapper dataset) |
Removes a dataset from the project in OMERO.
|
void |
DatasetWrapper.removeImage(Client client,
ImageWrapper image) |
Removes an image from the dataset in OMERO.
|
protected void |
GenericRepositoryObjectWrapper.removeLink(Client client,
java.lang.String linkType,
long childId) |
Removes the link of the given type with the given child ID.
|
java.util.List<ImageWrapper> |
DatasetWrapper.replaceImages(Client client,
java.util.Collection<? extends ImageWrapper> oldImages,
ImageWrapper newImage) |
Replaces (and unlinks) a collection of images from this dataset by a new image, after copying their annotations
and ROIs, and concatenating the descriptions (on new lines).
|
<A extends GenericAnnotationWrapper<?>> void |
GenericRepositoryObjectWrapper.unlink(Client client,
A annotation) |
Unlinks the given annotation from the current object.
|