Description Usage Arguments Value Author(s) Examples
View source: R/createDomainPlot.R
Create architecure plot for a pair of seed and ortholog protein
1 2 | pairDomainPlotting(seed, ortho, seedDf, orthoDf, minStart, maxEnd,
labelSize, titleSize)
|
seed |
Seed ID |
ortho |
Ortho ID |
seedDf |
domain dataframe for seed domains containing the seed ID, ortholog ID, sequence length, feature names, start and end positions, feature weights (optional) and the status to determine if that feature is important for comparison the architecture between 2 proteins* (e.g. seed protein vs ortholog) (optional). |
orthoDf |
domain dataframe for ortholog domains (same format as seedDf). |
minStart |
the smallest start position of all domains |
maxEnd |
the highest stop position of all domains |
labelSize |
lable size. Default = 12. |
titleSize |
title size. Default = 12. |
Domain plot of a pair proteins as a arrangeGrob object.
Vinh Tran tran@bio.uni-frankfurt.de
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | ## Not run:
seed <- "101621at6656"
ortho <- "101621at6656|AGRPL@224129@0|224129_0:001955|1"
ortho <- gsub("\\|", ":", ortho)
grepID <- paste(seed, "#", ortho, sep = "")
domainFile <- system.file(
"extdata", "domainFiles/101621at6656.domains",
package = "PhyloProfile", mustWork = TRUE
)
domainDf <- parseDomainInput(seed, domainFile, "file")
subdomainDf <- domainDf[grep(grepID, domainDf$seedID), ]
subdomainDf$feature <- as.character(subdomainDf$feature)
orthoDf <- subdomainDf[subdomainDf$orthoID == ortho,]
seedDf <- subdomainDf[subdomainDf$orthoID != ortho,]
minStart <- min(subdomainDf$start)
maxEnd <- max(c(subdomainDf$end, subdomainDf$length))
g <- pairDomainPlotting(seed,ortho,seedDf,orthoDf,minStart,maxEnd,9,9)
grid::grid.draw(g)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.