Skip to content

Commit

Permalink
Update to version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hanielcedraz committed Mar 21, 2019
1 parent 2985381 commit b9d5f9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions baqcom_qc
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ antQC <- 'antQC'
if(!file.exists(file.path(antQC))) dir.create(file.path(antQC), recursive = TRUE, showWarnings = FALSE)
for (i in samples[,2:3]){
system2('fastqc',
paste0('00-Fastq/', i, ' --outdir=', 'antQC/', ' -t ', length(samples)))
paste0('00-Fastq/', i, ' --outdir=', 'antQC/', ' -t ', opt$sampleToprocs))
}


Expand Down Expand Up @@ -195,7 +195,7 @@ posQC <- 'posQC'
if(!file.exists(file.path(posQC))) dir.create(file.path(posQC), recursive = TRUE, showWarnings = FALSE)
for (i in samples[,1]){
system2('fastqc',
paste0('01-trimmomatic/', i, '_trim_PE*', ' --outdir=', 'posQC/', ' -t ', length(samples)))
paste0('01-trimmomatic/', i, '_trim_PE*', ' --outdir=', 'posQC/', ' -t ', opt$sampleToprocs))
}


Expand Down

0 comments on commit b9d5f9e

Please sign in to comment.