|
| 1 | +-- MySQL dump 10.13 Distrib 8.3.0, for macos14.2 (arm64) |
| 2 | +-- |
| 3 | +-- Host: localhost Database: llama3_summaries |
| 4 | +-- ------------------------------------------------------ |
| 5 | +-- Server version 8.3.0 |
| 6 | + |
| 7 | +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; |
| 8 | +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; |
| 9 | +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; |
| 10 | +/*!50503 SET NAMES utf8mb4 */; |
| 11 | +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; |
| 12 | +/*!40103 SET TIME_ZONE='+00:00' */; |
| 13 | +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; |
| 14 | +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; |
| 15 | +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; |
| 16 | +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; |
| 17 | + |
| 18 | +-- |
| 19 | +-- Current Database: `llama3` |
| 20 | +-- |
| 21 | + |
| 22 | +CREATE DATABASE /*!32312 IF NOT EXISTS*/ `llama3` /*!40100 DEFAULT CHARACTER SET latin1 */ /*!80016 DEFAULT ENCRYPTION='N' */; |
| 23 | + |
| 24 | +USE `llama3`; |
| 25 | + |
| 26 | +-- |
| 27 | +-- Table structure for table `summaries` |
| 28 | +-- |
| 29 | + |
| 30 | +DROP TABLE IF EXISTS `summaries`; |
| 31 | +/*!40101 SET @saved_cs_client = @@character_set_client */; |
| 32 | +/*!50503 SET character_set_client = utf8mb4 */; |
| 33 | +CREATE TABLE `summaries` ( |
| 34 | + `gene_id` varchar(13) NOT NULL, |
| 35 | + `summary` longtext NOT NULL, |
| 36 | + `bert_score` decimal(8,7) NOT NULL, |
| 37 | + PRIMARY KEY (`gene_id`) |
| 38 | +) ENGINE=InnoDB DEFAULT CHARSET=latin1; |
| 39 | +/*!40101 SET character_set_client = @saved_cs_client */; |
| 40 | + |
| 41 | +-- |
| 42 | +-- Dumping data for table `summaries` |
| 43 | +-- |
| 44 | + |
| 45 | +LOCK TABLES `summaries` WRITE; |
| 46 | +/*!40000 ALTER TABLE `summaries` DISABLE KEYS */; |
| 47 | +INSERT INTO `summaries` VALUES |
| 48 | +('AT3G18890','The gene AT3G18890, also known as TIC62, has been found to be correlated with PSII electron transfer rate and cyclic electron transport (PubMed ID 33118270). Additionally, TIC62 has been shown to repress protein import (PubMed ID 19403728). Research has also demonstrated that TIC62 shuttles between the envelope and stroma (PubMed ID 20040542), interacts with FNR (PubMed ID 20040542), localizes to thylakoids (PubMed ID 20040542), binds to FNR (PubMed ID 20040542), stabilizes FNR (PubMed ID 20040542), and dynamically regulates FNR (PubMed ID 20040542). Furthermore, TIC62 has been found to form complexes with LIR1 and TROL (PubMed ID 26941088), and LIR1 enhances the affinity of LFNR for TIC62 (PubMed ID 26941088). Moreover, TIC62 has been shown to participate in anchoring ATLFNRs (PubMed ID 36138316).',0.9898241), |
| 49 | +('AT3G17820','The gene AT3G17820, also known as GLN1;3, plays a crucial role in regulating glutamine biosynthesis, as demonstrated by research in PubMed ID 28007952, which shows that GLN1;3 represses glutamine biosynthesis. Additionally, GLN1;3 localizes to the pericycle (PubMed ID 28007952) and encodes for cytosolic GS (PubMed ID 31034969). Furthermore, ATPDF2.1 has been found to enhance the expression of GLN1.3 and GLN1.5 (PubMed ID 31842759), which produce glutamine synthetase (PubMed ID 31842759). Interestingly, the GLN1;1, GLN1;2, and GLN1;3 genes have been shown to affect N remobilization (PubMed ID 29873769), which is also linked to vegetative growth (PubMed ID 30649517).',0.9829522), |
| 50 | +('AT3G18850','The gene AT3G18850, also known as LPAT5, has been found to localize to the endoplasmic reticulum (ER) (PubMed ID 31211859). This localization is crucial for its function, as LPAT5 is responsible for producing phospholipids and triacylglycerol (TAG) (PubMed ID 31211859).',0.9839827); |
| 51 | +/*!40000 ALTER TABLE `summaries` ENABLE KEYS */; |
| 52 | +UNLOCK TABLES; |
| 53 | +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; |
| 54 | + |
| 55 | +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; |
| 56 | +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; |
| 57 | +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; |
| 58 | +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; |
| 59 | +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; |
| 60 | +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; |
| 61 | +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; |
| 62 | + |
| 63 | +-- Dump completed on 2024-07-26 22:23:56 |
0 commit comments