Skip to content

Commit b7d4810

Browse files
committed
Fix name of SingleCellDataLoader.getCellTypeLabelling()
1 parent 6a993b7 commit b7d4810

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gemma-core/src/main/java/ubic/gemma/core/loader/expression/singleCell/MexSingleCellDataLoader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public Set<QuantitationType> getQuantitationTypes() {
107107
* MEX does not provide cell type labels.
108108
*/
109109
@Override
110-
public Optional<CellTypeAssignment> getCellTypeLabelling() {
110+
public Optional<CellTypeAssignment> getCellTypeAssignment() {
111111
return Optional.empty();
112112
}
113113

gemma-core/src/main/java/ubic/gemma/core/loader/expression/singleCell/SingleCellDataLoader.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public interface SingleCellDataLoader {
4141
/**
4242
* Load single-cell type labelling present in the data.
4343
*/
44-
Optional<CellTypeAssignment> getCellTypeLabelling() throws IOException;
44+
Optional<CellTypeAssignment> getCellTypeAssignment() throws IOException;
4545

4646
/**
4747
* Produces a stream of single-cell expression data vectors for the given {@link QuantitationType}.

0 commit comments

Comments
 (0)