Skip to content

Commit

Permalink
remove extra &
Browse files Browse the repository at this point in the history
  • Loading branch information
allyhawkins committed Mar 15, 2024
1 parent bf1891e commit fc18e27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/generate_unfiltered_sce.R
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ sample_type <- sample_metadata_df |>
is_xenograft ~ "patient-derived xenograft",
is_cell_line ~ "cell line",
# if neither column was provided, note that
is.na(is_xenograft) && is.na(is_cell_line) ~ "Not provided",
is.na(is_xenograft) & is.na(is_cell_line) ~ "Not provided",
.default = "patient tissue"
)
) |>
Expand Down

0 comments on commit fc18e27

Please sign in to comment.