Post

[Seurat] 필요없는 metadata 삭제

Seurat object로 downstream analysis를 하다보면, 쓸데없이 너무 많은 정보를 갖고 있다고 느낄때가 있다.

  • > OBJ$ + tab 으로 찾아볼때 metadata 리스트가 너무 많이 나와서 원하는걸 빨리 찾기 어려움
  • cell이 많으면 데이터 사이즈 커지는데 기여함
  • 이제는 불필요해진 metadata들도 있음 (ex. clustering resolution 바꿀때마다 하나씩 생김)

등등의 이유로 metadata를 정리하고 싶을때

Remove metadata

1
2
3
obj$useless.metadata <- NULL
#또는
obj[['useless.metadata']] <- NULL

이렇게 간단하게 제거 할 수 있다.

Reference

This post is licensed under CC BY 4.0 by the author.

© Subin Cho. Some rights reserved.

Using the Chirpy theme for Jekyll.