TranscriptionDataSet
,
which is a container for holding processed sequencing data and the results of
all downstream analyses. All the slots of the created object are filled
during the workflow by applying specific functions to the object directly.constructTDS(file, region, fragment.size = 250, unique = FALSE,
paired.end = FALSE, swap.strand = FALSE, param = NULL)
GRanges
. Genomic region(s) to
extract reads from. If not supplied, all the reads from a BAM file are
extracted.Numeric
. Extend read length to the fragment size.
Default: 250.Logical
. Whether to remove duplicated reads (based on the
genomic coordinates). Default: FALSE.Logical
. Whether to treat a BAM file as paired-end.
Default: FALSE.Logical
. Whether to reverse the strand of the read.
Default: FALSE.ScanBamParam
object influencing what
fields and which records (reads) are imported from a BAM file. Default:
NULL.TranscriptionDataSet
.fragments
, fragmentSize
, region
,
coveragePlus
, coverageMinus
are filled during the object
construction. The fragments
holds information about genomic
coordinates of the sequenced fragments (reads extended to the fragmento
size). coveragePlus
and coverageMinus
for each position in
the genome counts the number of fragments that cover it (for the details,
see coverage
). region
holds information about
the region used for fragments extraction.### Load TranscriptionDataSet object
data(tds)
### View a short summary of the object
tds
Run the code above in your browser using DataLab