Description Usage Arguments Value Examples
run xtandem
1 2 3 4 |
spectra |
MS/MS peak list file |
fasta |
Protein database file for searching. |
outdir |
The output directory. |
cpu |
The number of CPU used for X!Tandem search. Default is 1. |
enzyme |
Specification of specific protein cleavage sites. Default is "[KR]|[X]". |
varmod |
Specificiation of potential modifications of residues. |
fixmod |
Specification of modifications of residues. |
tol |
Parent ion mass tolerance (monoisotopic mass). |
tolu |
Parent ion M+H mass tolerance window units. |
itol |
Fragment ion mass tolerance (monoisotopic mass). |
itolu |
Unit for fragment ion mass tolerance (monoisotopic mass). |
miss |
The number of missed cleavage sites. Default is 2. |
maxCharge |
The Maximum parent charge, default is 8 |
ti |
anticipate carbon isotope parent ion assignment errors. Default is false. |
The search result file path
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # Variation-associated database construction
vcf <- system.file("extdata/sapFinder_test.vcf",
package="sapFinder")
annotation <- system.file("extdata/sapFinder_test_ensGene.txt",
package="sapFinder")
refseq <- system.file("extdata/sapFinder_test_ensGeneMrna.fa",
package="sapFinder")
xref <- system.file("extdata/sapFinder_test_BioMart.Xref.txt",
package="sapFinder")
outdir <- "db_dir"
prefix <- "sapFinder_test"
db.files <- dbCreator(vcf=vcf, annotation=annotation,
refseq=refseq, outdir=outdir,
prefix=prefix,xref=xref)
# MS/MS searching
mgf.path <- system.file("extdata/sapFinder_test.mgf",
package="sapFinder")
runTandem(spectra=mgf.path,fasta=db.files[1],
tol=10,tolu="ppm",itol=0.1,itolu="Daltons")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.