CuratedAtlasQueryR icon indicating copy to clipboard operation
CuratedAtlasQueryR copied to clipboard

Create GIF video for the API usage

Open stemangiola opened this issue 2 years ago • 0 comments

@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

  1. record my screen
  2. import into a video editing, and cropping
  3. cutting dead times, and compress slow parts
  4. 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()

stemangiola avatar Feb 08 '23 04:02 stemangiola