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 = 6831599
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
35540789 | GT-AG | 0 | 0.0009243266440715 | 1598 | rna-XM_009709844.1 6831599 | 1 | 80964 | 82561 | Cariama cristata 54380 | AAA|GTATGTATGA...ATTTTCCTAGGA/AGGAACATAACC...ACCAG|GAT | 0 | 1 | 8.502 |
35540790 | GT-AG | 0 | 1.000000099473604e-05 | 902 | rna-XM_009709844.1 6831599 | 2 | 79907 | 80808 | Cariama cristata 54380 | TAG|GTGAGTCAGC...TATTCTTTAAAA/ATTTGCTTTAAT...TATAG|GTT | 2 | 1 | 18.961 |
35540791 | GT-AG | 0 | 1.000000099473604e-05 | 10734 | rna-XM_009709844.1 6831599 | 3 | 69024 | 79757 | Cariama cristata 54380 | TGG|GTGAGTAAAC...CTATGCTTATTT/CCTATGCTTATT...TGCAG|GCA | 1 | 1 | 29.015 |
35540792 | GT-AG | 0 | 1.000000099473604e-05 | 1070 | rna-XM_009709844.1 6831599 | 4 | 67829 | 68898 | Cariama cristata 54380 | AAG|GTGAGTACTT...AGATGCTTATTG/TAGATGCTTATT...CACAG|GGC | 0 | 1 | 37.449 |
35540793 | GT-AG | 0 | 1.2555930584131003e-05 | 9298 | rna-XM_009709844.1 6831599 | 5 | 58437 | 67734 | Cariama cristata 54380 | ATA|GTGAGTATTG...TTTTTCTTATTT/GTTTTTCTTATT...TAAAG|ATA | 1 | 1 | 43.792 |
35540794 | GT-AG | 0 | 0.0038248625747519 | 7263 | rna-XM_009709844.1 6831599 | 6 | 51068 | 58330 | Cariama cristata 54380 | CAG|GTATGTTTGC...TCATCCATGATT/TTGTTGTTCATC...TGCAG|CAT | 2 | 1 | 50.945 |
35540795 | GT-AG | 0 | 1.000000099473604e-05 | 2163 | rna-XM_009709844.1 6831599 | 7 | 48685 | 50847 | Cariama cristata 54380 | AAG|GTAAAAGGAA...CATGCTTTGTTT/TTAAAGCTCATT...GTAAG|GAC | 0 | 1 | 65.789 |
35540796 | GT-AG | 0 | 1.000000099473604e-05 | 12718 | rna-XM_009709844.1 6831599 | 8 | 35840 | 48557 | Cariama cristata 54380 | AAG|GTAAGCCACC...AGGATCTTTGCA/TTTGCACTGACT...TTCAG|GAC | 1 | 1 | 74.359 |
35540797 | GT-AG | 0 | 1.000000099473604e-05 | 983 | rna-XM_009709844.1 6831599 | 9 | 34721 | 35703 | Cariama cristata 54380 | AGG|GTAAGTACTG...TTCTTCTTCTCT/AAATAATTTACT...CTTAG|GGC | 2 | 1 | 83.536 |
35540798 | GT-AG | 0 | 1.000000099473604e-05 | 2380 | rna-XM_009709844.1 6831599 | 10 | 32211 | 34590 | Cariama cristata 54380 | ACG|GTAAGCACAG...TAGAACTTAATT/TTCTTTTTCAAG...TACAG|GTT | 0 | 1 | 92.308 |
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]);