Skip to content

Commit

Permalink
fix transform assay
Browse files Browse the repository at this point in the history
  • Loading branch information
stemangiola committed Aug 29, 2024
1 parent 5112300 commit 4e95796
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions R/tranform_assay.R
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ tranform_assay.HPCell = function(
user_function = transform_utility |> quote() ,
input_read_RNA_assay = as.name(target_input),
transform_fx = transform |> quote() ,
external_path = glue("{input_hpc$initialisation$store}/external")
external_path = glue("{input_hpc$initialisation$store}/external") |> as.character()
)

}
Expand Down Expand Up @@ -75,5 +75,4 @@ transform_utility = function(input_read_RNA_assay, transform_fx, external_path)
as.sparse=TRUE
)

file_name
}
3 changes: 1 addition & 2 deletions tests/testthat/test_single_functions.R
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,6 @@ file_list =

# Initialise pipeline characteristics
file_list |>
head(2) |>
initialise_hpc(
gene_nomenclature = "symbol",
data_container_type = "sce_hdf5",
Expand Down Expand Up @@ -578,7 +577,7 @@ file_list |>
) |>

# Remove empty outliers
remove_empty_DropletUtils( target_input = "data_object") |>
remove_empty_DropletUtils( target_input = "sce_transformed") |>

# Annotation
annotate_cell_type(
Expand Down

0 comments on commit 4e95796

Please sign in to comment.