Description Usage Arguments Examples
Title
1 2 3 4 5 6 7 8 9 10 11 | RenderABlast(
BlastProt,
ProteinBankFastaFilePath,
PepFilePath,
SampleDescriptionFilePath,
IntensityPrefix,
SampleGroupName,
BlastFilePath,
SampleName,
OutputDir = "./"
)
|
BlastProt |
Name of the protein of interest |
ProteinBankFastaFilePath |
Path to the fasta file that have been used for this analysis |
PepFilePath |
Path to the peptide file |
SampleDescriptionFilePath |
Path to the sample description file |
IntensityPrefix |
Prefix of the intensity, keep the space in case of |
SampleGroupName |
Name of the Sample group column in the Sample description file |
BlastFilePath |
Path to the Blast result file |
SampleName |
Name of the Sample column in the Sample description file |
OutputDir |
Name of the output directory, the isoform html file will be created in the isoform skelton subdirectory |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | library(rmarkdown)
library("flexdashboard")
library("sessioninfo")
library("sparkline")
ProteinBankFastaFilePath <- system.file("extdata",
"protein_bank.example.fasta",
package = "isoformnspectRe")
PepFilePath <- system.file("extdata",
"peptides.example.txt",
package = "isoformnspectRe")
BlastFilePath <- system.file("extdata",
"blast_rescue.example.txt",
package = "isoformnspectRe")
IntensityPrefix <- "Intensity "
Pep<-read.table(PepFilePath, header=TRUE,sep="\t",quote="\"")
ProteinOfInterest <- unique(Pep$Leading.razor.protein)
ProteinOfInterest <- ProteinOfInterest[grep("Blast=",ProteinOfInterest)][1]
SampleDescriptionFilePath <- system.file("extdata",
"SampleDescription.txt",
package = "isoformnspectRe")
SampleGroupName <- "LooseSampleGroup"
SampleName <- "SampleName"
RenderABlast(BlastProt=ProteinOfInterest,
ProteinBankFastaFilePath=ProteinBankFastaFilePath,
PepFilePath=PepFilePath,
SampleDescriptionFilePath=SampleDescriptionFilePath,
IntensityPrefix=IntensityPrefix,
SampleGroupName=SampleGroupName,
BlastFilePath=BlastFilePath,
SampleName=SampleName,
OutputDir=tempdir())
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.