CuratedAtlasQueryR
CuratedAtlasQueryR copied to clipboard
Create GIF video for the API usage
@multimeric if you don't terribly dislkie it, in the past it was useful for me to create a 10ish seconds GIF video about a package usage, it is a good product for any communication.
For example the video in this REAMDE https://github.com/stemangiola/tidygate
the way I did it
- record my screen
- import into a video editing, and cropping
- cutting dead times, and compress slow parts
- export to GIF
The code we might showcase, could be
get_metadata()
get_metadata() |>
dplyr::filter(
ethnicity == "African" &
str_like(assay, "%10x%") &
tissue == "lung parenchyma" &
str_like(cell_type, "%CD4%")
)
get_metadata() |>
dplyr::filter(
ethnicity == "African" &
str_like(assay, "%10x%") &
tissue == "lung parenchyma" &
str_like(cell_type, "%CD4%")
) |>
get_SingleCellExperiment()