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 = 26505189
This data as json, CSV (advanced)
Suggested facets: score, phase
| id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 146835876 | GT-AG | 0 | 1.000000099473604e-05 | 411 | Pavag01G278500.1.v3.1 26505189 | 1 | 34271943 | 34272353 | Paspalum vaginatum 158149 | GAG|GTGCGTCCTG...CGGTTCTCGACG/CGTTTGGTGATT...TGTAG|GAA | 0 | 1 | 1.492 |
| 146835877 | GT-AG | 0 | 1.000000099473604e-05 | 665 | Pavag01G278500.1.v3.1 26505189 | 2 | 34272426 | 34273090 | Paspalum vaginatum 158149 | GAG|GTGGGCGTTT...ATGACTTTAAGA/TTAAGACTGATA...TGTAG|GAC | 0 | 1 | 2.924 |
| 146835878 | GT-AG | 0 | 0.0051050125761059 | 1413 | Pavag01G278500.1.v3.1 26505189 | 3 | 34274225 | 34275637 | Paspalum vaginatum 158149 | GAT|GTAACTCCCA...CATTGTTTAATA/CCCATATTCATT...CCCAG|GTT | 0 | 1 | 25.477 |
| 146835879 | GT-AG | 0 | 6.549663538081817e-05 | 436 | Pavag01G278500.1.v3.1 26505189 | 4 | 34275724 | 34276159 | Paspalum vaginatum 158149 | TAC|GTAAGTTACA...GTTGATTTAATT/GTTGATTTAATT...ACCAG|GTA | 2 | 1 | 27.188 |
| 146835880 | GT-AG | 0 | 1.000000099473604e-05 | 99 | Pavag01G278500.1.v3.1 26505189 | 5 | 34276951 | 34277049 | Paspalum vaginatum 158149 | GAG|GTTTGACCCA...TTACTTTTAATC/TTTTGTTTTACT...TTCAG|CAG | 1 | 1 | 42.92 |
| 146835881 | GT-AG | 0 | 2.8016604680669865e-05 | 97 | Pavag01G278500.1.v3.1 26505189 | 6 | 34277476 | 34277572 | Paspalum vaginatum 158149 | CAG|GTAAGTTCTT...ACCTCTTTGATG/ACCTCTTTGATG...ATTAG|GAA | 1 | 1 | 51.392 |
| 146835882 | GT-AG | 0 | 0.0028213145808066 | 83 | Pavag01G278500.1.v3.1 26505189 | 7 | 34278546 | 34278628 | Paspalum vaginatum 158149 | GCA|GTATGATGTC...TATTCCTTTTAT/AAGAATTTTATG...TTCAG|GGG | 2 | 1 | 70.744 |
| 146835883 | GT-AG | 0 | 0.0034300920170947 | 77 | Pavag01G278500.1.v3.1 26505189 | 8 | 34278860 | 34278936 | Paspalum vaginatum 158149 | AAG|GTACCACTTT...TGTTTTATGATT/TGTATACTAACT...AACAG|TTA | 2 | 1 | 75.338 |
| 146835884 | GT-AG | 0 | 0.0001782605786062 | 84 | Pavag01G278500.1.v3.1 26505189 | 9 | 34279062 | 34279145 | Paspalum vaginatum 158149 | AAC|GTAAGTTTAT...CTCCTTTTAATG/ATGAATTTCATA...TACAG|GTT | 1 | 1 | 77.824 |
| 146835885 | GT-AG | 0 | 1.000000099473604e-05 | 89 | Pavag01G278500.1.v3.1 26505189 | 10 | 34279569 | 34279657 | Paspalum vaginatum 158149 | AAG|GTTGTGTTAT...GTTGCTTTAATC/TTTTAGTTGATT...TTCAG|GTA | 1 | 1 | 86.237 |
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]);