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 = 23404104
This data as json, CSV (advanced)
Suggested facets: score
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 127495127 | GT-AG | 0 | 1.000000099473604e-05 | 14142 | rna-XM_024739371.1 23404104 | 1 | 1146852 | 1160993 | Neophocaena asiaeorientalis 189058 | GTG|GTGAGGATCC...AAGACATTAACT/CATTAACTTACT...AATAG|GAA | 0 | 1 | 6.25 |
| 127495128 | GT-AG | 0 | 2.994534098127692e-05 | 114 | rna-XM_024739371.1 23404104 | 2 | 1146660 | 1146773 | Neophocaena asiaeorientalis 189058 | AAG|GTATGAATGC...AATTTATTAATG/AATTTATTAATG...ATTAG|CCT | 0 | 1 | 13.636 |
| 127495129 | GT-AG | 0 | 6.752477645812574e-05 | 2538 | rna-XM_024739371.1 23404104 | 3 | 1144095 | 1146632 | Neophocaena asiaeorientalis 189058 | GAG|GTATGAGTTT...TCTATTTTAAAA/TCTATTTTAAAA...TGTAG|ATA | 0 | 1 | 16.193 |
| 127495130 | GT-AG | 0 | 1.876343720522725e-05 | 1922 | rna-XM_024739371.1 23404104 | 4 | 1142068 | 1143989 | Neophocaena asiaeorientalis 189058 | GAG|GTAAGTTTTT...TGTTGTTTGATA/TGTTGTTTGATA...AATAG|GTT | 0 | 1 | 26.136 |
| 127495131 | GT-AG | 0 | 1.000000099473604e-05 | 5715 | rna-XM_024739371.1 23404104 | 5 | 1136239 | 1141953 | Neophocaena asiaeorientalis 189058 | AAG|GTAAGAAGTC...AACTTTTTACCT/TAACTTTTTACC...CTCAG|GGA | 0 | 1 | 36.932 |
| 127495132 | GT-AG | 0 | 1.000000099473604e-05 | 1378 | rna-XM_024739371.1 23404104 | 6 | 1134714 | 1136091 | Neophocaena asiaeorientalis 189058 | GAG|GTGATCCCTC...TTGCTCTTGACT/TTGCTCTTGACT...TTCAG|GCA | 0 | 1 | 50.852 |
| 127495133 | GT-AG | 0 | 0.0002832822642295 | 1393 | rna-XM_024739371.1 23404104 | 7 | 1133252 | 1134644 | Neophocaena asiaeorientalis 189058 | AAG|GTATGTACTT...TTACCCTTTTTT/TCTAAATTTACC...CACAG|TTT | 0 | 1 | 57.386 |
| 127495134 | GT-AG | 0 | 1.000000099473604e-05 | 131 | rna-XM_024739371.1 23404104 | 8 | 1132980 | 1133110 | Neophocaena asiaeorientalis 189058 | AGG|GTGAGGTTTC...TTTTTTTTCTTT/AATTTAGTTACG...TCCAG|AAT | 0 | 1 | 70.739 |
| 127495135 | GT-AG | 0 | 0.0001683978915225 | 2204 | rna-XM_024739371.1 23404104 | 9 | 1130704 | 1132907 | Neophocaena asiaeorientalis 189058 | AAG|GTACATTACC...TCTTCTTCAACT/CTCTTCTTCAAC...TTTAG|GCT | 0 | 1 | 77.557 |
| 127495136 | GT-AG | 0 | 1.000000099473604e-05 | 20116 | rna-XM_024739371.1 23404104 | 10 | 1110432 | 1130547 | Neophocaena asiaeorientalis 189058 | CAG|GTAAGCGGTT...TTATTTTTATTT/TTTATTTTTATT...CTCAG|GGA | 0 | 1 | 92.33 |
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]);