I need to loop some commands over a list. Let's say:
ID <- c("SRR85", "SRR72")
ID <- file %>%
filter(type == "CDS" & genome == "ID") %>%
select(genome, product)
I mean, for every ID I need a dataframe filtered and select. Can anybody help me please?
Thank you all in advance.