plotComparisonArc {rnaCrosslinkOO} | R Documentation |
plotComparisonArc
Description
This method plots two structures chosen from the plotEnsemblePCA method
Usage
plotComparisonArc(foldedCds, s1 = "s1", s2 = "s2", n1 = 1, n2 = 2)
Arguments
foldedCds |
|
s1 |
sample of structure 1 |
s2 |
sample of structure 2 |
n1 |
number of structure from first sample |
n2 |
number of structure from first sample |
Value
an ark diagram of the two strcutures
Examples
## Not run:
cds = makeExamplernaCrosslinkDataSet()
clusteredCds = clusterrnaCrosslink(cds = cds,
cores = 3,
stepCount = 2,
clusterCutoff = 1)
trimmedClusters = trimClusters(clusteredCds = clusteredCds,trimFactor = 1, clusterCutoff = 1)
fasta = paste(c(rep('A',25),
rep('T',25),
rep('A',10),
rep('T',23)),collapse = "")
header = '>transcript1'
fastaFile = tempfile()
writeLines(paste(header,fasta,sep = "\n"),con = fastaFile)
rnaRefs = list()
rnaRefs[[rnas(cds)]] = read.fasta(fastaFile)
rnaRefs
foldedCds = foldrnaCrosslink(trimmedClusters,
rnaRefs = rnaRefs,
start = 1,
end = 83,
shape = 0,
ensembl = 5,
constraintNumber = 1,
evCutoff = 1)
plotComparisonArc(foldedCds,"s1","s1",1,3)
## End(Not run)
[Package rnaCrosslinkOO version 0.1.4 Index]