Skip to content

Commit

Permalink
Fix name of SingleCellDataLoader.getCellTypeLabelling()
Browse files Browse the repository at this point in the history
  • Loading branch information
arteymix committed Feb 20, 2024
1 parent 6a993b7 commit b7d4810
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public Set<QuantitationType> getQuantitationTypes() {
* MEX does not provide cell type labels.
*/
@Override
public Optional<CellTypeAssignment> getCellTypeLabelling() {
public Optional<CellTypeAssignment> getCellTypeAssignment() {
return Optional.empty();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public interface SingleCellDataLoader {
/**
* Load single-cell type labelling present in the data.
*/
Optional<CellTypeAssignment> getCellTypeLabelling() throws IOException;
Optional<CellTypeAssignment> getCellTypeAssignment() throws IOException;

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

0 comments on commit b7d4810

Please sign in to comment.