1 | WgetQC(GEO_accession = "SRR1234567", Paired = F)
|
Rhisat2
, Rtrim_galore
,and Coldata_example
1 2 3 4 5 6 7 8 9 10 11 12 13 | library(RbashGEO)
library(dplyr)
Coldata_new <- read.csv("./Coldata_new.csv") #See attached collumn data example in Coldata_example
mapply(
function(x,y){
Rhisat2(Fastq_file_name = x,
Paired = y,
parallel_num = 1,
Fastq_directory = getwd()) %>% Rnohup(.,paste0(x,"_hisat2"))},
Coldata_new$SRR_RUN,
(Coldata_new$Lib == "Paired")
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.