Writing an R function to read FASTA-formatted files (CC289)

Поделиться
HTML-код
  • Опубликовано: 27 окт 2024

Комментарии • 4

  • @SammanMahmoud
    @SammanMahmoud 4 месяца назад +2

    Sir, I am working on bioinformatics programming for several years now, and I need to say thank you for your wonderful efforts 😄, First Like 😁

    • @Riffomonas
      @Riffomonas  4 месяца назад +1

      Ha! Thanks for watching. Good luck in your own bioinformatics project

  • @djangoworldwide7925
    @djangoworldwide7925 4 месяца назад +4

    I recommend the fastverse, mainly collapse:: package, which offers hyper-performnat in tidyverse syntax.
    Try instead of mutate, collapse::fmutate. Instead of inner join, collapse::join(...,how="inner") etc..
    I also like bench::mark(..,.., relative = TRUE) now to get relative time (slower is 1.00, all other align).
    These are super helpful functions in a great echo system very similar to the tidyverse, just faster.

    • @Riffomonas
      @Riffomonas  4 месяца назад

      Thanks - I'll have to check it out