Lemna minor annotation R package (org.Lminor.eg.db) and corresponding files behind the custom built
收藏资源简介:
This public repository containing the following files: Custom built annotation R package for the <em>Lemna minor </em>reference genome [org.Lminor.eg.db.7z]. The package was built via AnnotationForge using sequence homology of protein coding genes for functional characterisation (Description, PFAMs, GO terms). A combined approach using blastx and EMBL's eggNOG mapper was used for this task. This package is compatible with clusterProfiler for downstream functional enrichment analysis (ORA / GSEA) of <em>L. minor</em> transcriptomic / proteomic data.<br> <br> For <strong>how to install and use this package</strong> in your R session,<strong> check the R code example below</strong>.<br> Reference genome, genome annotation (gtf), gene coding sequences (cds) and cds translated peptide sequences (cds.pep) of the duckweed <em>Lemna minor </em>[Lminor_refGenome_GTF_CDS.7z].<br> The reference genome assembly fasta was downloaded from www.lemna.org. Matching GTF annotation file was generated via '<em>gffread</em>', from the GFF<em> </em>annotation file available here.<br> With the cds translated peptide file, a blastp search was performed against a custom plant protein sequence database [Lminor_ref.org.Db4blastp.7z]. The custom database was built from the proteomes of well annotated reference plant species. (For details refer to the readme file within the compressed folder) For more details please refer to our publication in Environmental Science & Technology:<br> Loll, Alexandra, Hannes Reinwald, Steve U. Ayobahan, Bernd Göckener, Gabriela Salinas, Christoph Schäfers, Karsten Schlich, Gerd Hamscher, and Sebastian Eilebrecht. <em><strong>“Short-Term Test for Toxicogenomic Analysis of Ecotoxic Modes of Action in Lemna Minor.”</strong></em> Environmental Science & Technology 56, no. 16 (August 16, 2022): 11504–15.<br> DOI: https://doi.org/10.1021/acs.est.2c01777 <pre><code class="language-bash"># 1. Download and unzip (7zip format) the org.Lminor.eg.db package. # 2. Install the package via: orgDb = "path/to/org.Lminor.eg.db/" install.packages(orgDb, type="source", repos=NULL) # 3. Restart R session then load package require(org.Lminor.eg.db) require(AnnotationDbi) # to check for columns and keytypes: columns(org.Lminor.eg.db) keytypes(org.Lminor.eg.db) # query the org.Lminor.eg.db for particular Lemna gene IDs (GID) gid = keys(org.Lminor.eg.db, keytype="GID") col = columns(org.Lminor.eg.db)[c(5,17,9,15,1,8,14)] df = select(org.Lminor.eg.db, keys=gid[1000:1100], columns=col, keytype="GID") View(df) ### Running overrepresenation analysis in clusterProfiler using the Lminor annotation package ### # ORA for multiple gene sets via compareCluster() require(clusterProfiler) genLs = list(setA = gid[1:40], setB = gid[100:140], setC = gid[1000:1040]) res = compareCluster(genLs, fun = "enrichGO", OrgDb = "org.Lminor.eg.db", keyType = "GID", ont = "BP", universe = gid) # Compute semantic similiarities among GO terms: d = GOSemSim::godata('org.Lminor.eg.db', ont="BP", computeIC=FALSE, keytype = "GID") res = enrichplot::pairwise_termsim(res, method = "Wang", semData = d) # Rmv GO terms with redudant biological information resS = simplify(res, .8) # resort results after pvalues resS@compareClusterResult = resS@compareClusterResult[order(resS@compareClusterResult$pvalue),] View(res@compareClusterResult) # Network plot emapplot(resS, showCategory = 30)</code></pre>



