introns
Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)
- id
- INTEGER (primary key), globally unique identifier for each intron
- dinucleotide_pair
- TEXT, terminal dinucleotide sequences of the intron
- is_minor
- INTEGER, indicates if the intron is a minor intron (1) or not (0)
- score
- REAL, score representing the probability (0-100%) of the intron being minor
- length
- INTEGER, length of the intron in base pairs
- transcript_id
- INTEGER (foreign key referencing transcripts(id)), parent transcript
- ordinal_index
- INTEGER, ordinal position of the intron within the transcript (e.g., 3 for the third intron)
- start
- INTEGER, start position of the intron in the genome
- end
- INTEGER, end position of the intron in the genome
- taxonomy_id
- INTEGER (foreign key referencing genomes(taxonomy_id)), NCBI taxonomy identifier for species
- scored_motifs
- TEXT, motifs scored for the intron
- phase
- INTEGER, phase of the intron in coding sequence (0, 1, or 2 or null for introns outside of coding sequence)
- in_cds
- INTEGER, indicates if the intron is within the coding sequence (1) or not (0; e.g., UTR introns)
- relative_position
- REAL, relative position of the intron within the transcript (as a percentage of coding length)
9 rows where transcript_id = 25439171
This data as json, CSV (advanced)
Suggested facets: phase
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 140325370 | GT-AG | 0 | 3.825358228019404e-05 | 973 | rna-XM_026023792.1 25439171 | 1 | 5891137 | 5892109 | Oryza sativa 4530 | GGA|GTAAGCGCCC...AATCGTTTAGTT/GTTTAGTTTACT...ACCAG|ATT | 2 | 1 | 5.289 |
| 140325371 | GT-AG | 0 | 1.3471272169531514e-05 | 481 | rna-XM_026023792.1 25439171 | 2 | 5892274 | 5892754 | Oryza sativa 4530 | CAG|GTACATACCG...GTTTTGTTGAAT/GATGGTCTCACA...TGCAG|GCT | 1 | 1 | 9.381 |
| 140325372 | GT-AG | 0 | 1.5145369909419029e-05 | 62 | rna-XM_026023792.1 25439171 | 3 | 5892879 | 5892940 | Oryza sativa 4530 | TAA|GTAAGACTTG...TTTTCTTTATTG/GTTTTCTTTATT...TTTAG|ATT | 2 | 1 | 12.475 |
| 140325373 | GT-AG | 0 | 0.000639449286811 | 555 | rna-XM_026023792.1 25439171 | 4 | 5893074 | 5893628 | Oryza sativa 4530 | AAG|GTTCCGTTAT...AATCTTTTGAAC/AATCTTTTGAAC...GACAG|AGA | 0 | 1 | 15.793 |
| 140325374 | GT-AG | 0 | 1.000000099473604e-05 | 131 | rna-XM_026023792.1 25439171 | 5 | 5893733 | 5893863 | Oryza sativa 4530 | CAG|GTGCAACACA...ACAGCCTTATTA/ATTTAGTTCATG...GTCAG|CAG | 2 | 1 | 18.388 |
| 140325375 | GT-AG | 0 | 1.2703336408940696e-05 | 95 | rna-XM_026023792.1 25439171 | 6 | 5896781 | 5896875 | Oryza sativa 4530 | GAG|GTAGTATGTC...GATTCATTAACT/TAATGATTCATT...TGCAG|AAT | 0 | 1 | 91.168 |
| 140325376 | GT-AG | 0 | 0.0043340599333425 | 285 | rna-XM_026023792.1 25439171 | 7 | 5896966 | 5897250 | Oryza sativa 4530 | AAG|GTTTGCTTCA...TTCATTTTAATA/TTTTTGTTCATT...TGCAG|TCA | 0 | 1 | 93.413 |
| 140325377 | GT-AG | 0 | 0.0002160067234531 | 277 | rna-XM_026023792.1 25439171 | 8 | 5897356 | 5897632 | Oryza sativa 4530 | AAG|GTATTTCCAT...ATAACTGTAGCT/AATATGTTCACA...TGCAG|ACA | 0 | 1 | 96.033 |
| 140325378 | GT-AG | 0 | 5.795972441774024e-05 | 85 | rna-XM_026023792.1 25439171 | 9 | 5897741 | 5897825 | Oryza sativa 4530 | CAG|GTTTGTATTG...TTTTCCCTGATT/TTTTCCCTGATT...ATCAG|GCT | 0 | 1 | 98.728 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE "introns" (
"id" INTEGER,
"dinucleotide_pair" TEXT,
"is_minor" INTEGER,
"score" REAL,
"length" INTEGER,
"transcript_id" INTEGER,
"ordinal_index" INTEGER,
"start" INTEGER,
"end" INTEGER,
"taxonomy_id" INTEGER,
"scored_motifs" TEXT,
"phase" INTEGER,
"in_cds" INTEGER,
"relative_position" REAL
,PRIMARY KEY ([id]),
FOREIGN KEY([transcript_id]) REFERENCES [transcripts]([id]),
FOREIGN KEY([taxonomy_id]) REFERENCES [genomes]([taxonomy_id])
);
CREATE INDEX [idx_introns_transcript_id]
ON [introns] ([transcript_id]);
CREATE INDEX [idx_introns_taxonomy_id]
ON [introns] ([taxonomy_id]);
CREATE INDEX [idx_introns_phase]
ON [introns] ([phase]);
CREATE INDEX [idx_introns_is_minor]
ON [introns] ([is_minor]);
CREATE INDEX [idx_introns_dinucleotide_pair]
ON [introns] ([dinucleotide_pair]);
CREATE INDEX [idx_introns_score]
ON [introns] ([score]);
CREATE INDEX [idx_introns_in_cds]
ON [introns] ([in_cds]);