Skip to content

Commit

Permalink
More fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Feb 27, 2024
1 parent ad7f745 commit 6606eb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion R/MonacoImmuneData.R
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ MonacoImmuneData <- function(ensembl=FALSE, cell.ont=c("all", "nonna", "none"),
cell.ont <- match.arg(cell.ont)

if (!legacy && cell.ont == "all") {
se <- fetchReference("monaco", "2024-02-26", realize.assays=TRUE)
se <- fetchReference("monaco_immune", "2024-02-26", realize.assays=TRUE)
} else {
version <- "1.0.0"
se <- .create_se("monaco_immune", version,
Expand Down
2 changes: 1 addition & 1 deletion R/searchReferences.R
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ searchReferences <- function(query, cache=cacheDirectory(), overwrite=FALSE, lat
if (!latest) {
stmt <- paste0(stmt, ", versions.latest AS latest")
}
stmt <- paste0(stmt, " FROM paths LEFT JOIN versions ON paths.vid = versions.vid WHERE versions.project = 'scRNAseq'")
stmt <- paste0(stmt, " FROM paths LEFT JOIN versions ON paths.vid = versions.vid WHERE versions.project = 'celldex'")
if (latest) {
stmt <- paste0(stmt, " AND versions.latest = 1")
}
Expand Down

0 comments on commit 6606eb7

Please sign in to comment.