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)
10 rows where transcript_id = 10378457
This data as json, CSV (advanced)
Suggested facets: score, length, phase
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 57023002 | GT-AG | 0 | 0.0001404684113059 | 141 | rna-XM_025118678.1 10378457 | 1 | 46426069 | 46426209 | Cynara cardunculus 4265 | ACT|GTAAGATTGA...GTACTTTTGACA/GTACTTTTGACA...TTGAG|GTG | 0 | 1 | 13.174 |
| 57023003 | GT-AG | 0 | 1.000000099473604e-05 | 1457 | rna-XM_025118678.1 10378457 | 2 | 46424345 | 46425801 | Cynara cardunculus 4265 | AAG|GTAAGATTAA...TCTATCTTAAAC/TCTATCTTAAAC...TGCAG|GTC | 0 | 1 | 21.043 |
| 57023004 | GT-AG | 0 | 1.000000099473604e-05 | 112 | rna-XM_025118678.1 10378457 | 3 | 46423990 | 46424101 | Cynara cardunculus 4265 | AAG|GTGAGAATTG...CTTCTTTTATAC/ACTTCTTTTATA...TTTAG|TGT | 0 | 1 | 28.205 |
| 57023005 | GT-AG | 0 | 1.000000099473604e-05 | 101 | rna-XM_025118678.1 10378457 | 4 | 46423706 | 46423806 | Cynara cardunculus 4265 | ATG|GTTGGTAATT...ACCATTTTGACC/ACCATTTTGACC...TTCAG|AAG | 0 | 1 | 33.599 |
| 57023006 | GT-AG | 0 | 0.0069286927561337 | 4746 | rna-XM_025118678.1 10378457 | 5 | 46417476 | 46422221 | Cynara cardunculus 4265 | AAG|GTATATATGC...TGCTCTTTATCC/GGTTTGTTAATC...AACAG|TGG | 2 | 1 | 77.336 |
| 57023007 | GT-AG | 0 | 1.000000099473604e-05 | 118 | rna-XM_025118678.1 10378457 | 6 | 46417284 | 46417401 | Cynara cardunculus 4265 | CAG|GTTAGGTTTG...TCTTCTTTGTCT/TTTGTCTTCAGC...TGCAG|GAT | 1 | 1 | 79.517 |
| 57023008 | GT-AG | 0 | 1.000000099473604e-05 | 409 | rna-XM_025118678.1 10378457 | 7 | 46416793 | 46417201 | Cynara cardunculus 4265 | GAG|GTAAGCGAGT...ATACCATTATCG/TTGTGGTTAATT...AATAG|GGT | 2 | 1 | 81.933 |
| 57023009 | GT-AG | 0 | 1.000000099473604e-05 | 141 | rna-XM_025118678.1 10378457 | 8 | 46416526 | 46416666 | Cynara cardunculus 4265 | AAG|GTGATTATTA...GATGCCTTCGCT/TTCTCTCTGATG...ATCAG|TTT | 2 | 1 | 85.647 |
| 57023010 | GT-AG | 0 | 0.006038831227888 | 455 | rna-XM_025118678.1 10378457 | 9 | 46415964 | 46416418 | Cynara cardunculus 4265 | GAG|GTATTTATAT...CTAACCTTACTT/ATACTTCTAACC...ATCAG|AGG | 1 | 1 | 88.8 |
| 57023011 | GT-AG | 0 | 1.000000099473604e-05 | 168 | rna-XM_025118678.1 10378457 | 10 | 46415641 | 46415808 | Cynara cardunculus 4265 | ATG|GTAAATCATC...ATTCATTTATCC/GGTTTATTCATT...TTCAG|GTG | 0 | 1 | 93.369 |
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]);