View source: R/fromFastqToBam.R
FastqToBam | R Documentation |
Trims and maps reads based on Rbowtie2
FastqToBam( bowtie2_index, File1, File2 = NULL, adapters_list = NULL, outputdir = file.path(getwd(), "FastqToBam"), cores = 1, trim = T, phred33 = T, Read_min_size_after_trimming = 25 )
bowtie2_index, |
path to bowtie2 index |
File1, |
list of paths to fastq files (R1 files for PE) |
File2, |
list of paths to R2 fastq files for PE |
adapters_list, |
list of adapters to trim, if not provided general illumina adaters will be used |
outputdir, |
output path |
cores, |
number of parallel jobs |
trim, |
logical value, if False reads won't be trimmed |
phred33, |
logical value, if False phred64 will be used |
Read_min_size_after_trimming, |
read minimum size to be kept |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.