stemangiola / ABACBS2020_tidytranscriptomics

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Chunk producing many lines of warning

mblue9 opened this issue · comments

Just to note this is the bit of code that outputs a warning over and over and makes my computer heat up.

pbmc_scaled_nested = 
  pbmc_alive %>%
  mutate(batch = dataset) %>%
  nest(data = -batch) %>%
  mutate(data = map(data, ~ SCTransform(.x, verbose = FALSE))) 

The warning is this over and over

Input `data` is `map(data, ~SCTransform(.x, verbose = FALSE))`.iteration limit reachedProblem with `mutate()` input `data`.

I've set warning=FALSE for that chunk to turn it off but if there's any way to not have that output would be good as it's a bit disturbing. But if you don't have time we could just leave as is and maybe try to fix later if we include it in future workshops.

We're using warning=FALSE, can revisit at a later date if need be.