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)
11 rows where transcript_id = 442666
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
2571617 | GT-AG | 0 | 0.0079992881853978 | 1380 | rna-XM_029336728.2 442666 | 1 | 10136963 | 10138342 | Acropora millepora 45264 | AAG|GTATGCTCAC...TCTATTTTATTT/TTCTATTTTATT...CATAG|CAT | 1 | 1 | 17.456 |
2571618 | GT-AG | 0 | 7.729407805149526e-05 | 471 | rna-XM_029336728.2 442666 | 2 | 10136324 | 10136794 | Acropora millepora 45264 | TGT|GTAAGTACTC...TATTTCTAAATT/CACTTTCTAATT...TTTAG|CCT | 1 | 1 | 20.47 |
2571619 | GT-AG | 0 | 1.000000099473604e-05 | 715 | rna-XM_029336728.2 442666 | 3 | 10135453 | 10136167 | Acropora millepora 45264 | GAG|GTAAGTCATT...ATTATTTTATAT/TTTATATTCATA...GATAG|AAT | 1 | 1 | 23.269 |
2571620 | GT-AG | 0 | 1.000000099473604e-05 | 1419 | rna-XM_029336728.2 442666 | 4 | 10133821 | 10135239 | Acropora millepora 45264 | ATG|GTTGGTGGAA...AATTTGTTATAC/AAATTTGTTATA...TGTAG|GAA | 1 | 1 | 27.09 |
2571621 | GT-AG | 0 | 5.4136630798214727e-05 | 147 | rna-XM_029336728.2 442666 | 5 | 10132981 | 10133127 | Acropora millepora 45264 | TGC|GTAAGTATTA...AATTGTTTATTA/AAATTGTTTATT...TGCAG|CTT | 1 | 1 | 39.523 |
2571622 | GT-AG | 0 | 2.495756448217101e-05 | 1425 | rna-XM_029336728.2 442666 | 6 | 10131409 | 10132833 | Acropora millepora 45264 | CAG|GTAATTATTT...GTTTTCTTGTCT/TCTTGTATAAAA...GTCAG|CTT | 1 | 1 | 42.16 |
2571623 | GT-AG | 0 | 8.078958948423607e-05 | 200 | rna-XM_029336728.2 442666 | 7 | 10130923 | 10131122 | Acropora millepora 45264 | TCA|GTAAGTGTTT...TATGTTTTAAAT/TATGTTTTAAAT...TGCAG|GCC | 2 | 1 | 47.291 |
2571624 | GT-AG | 0 | 0.0035392641629344 | 440 | rna-XM_029336728.2 442666 | 8 | 10129722 | 10130161 | Acropora millepora 45264 | CAG|GTAGCTATGG...TTTCCTTTACCT/ATTTTGTTTACT...TATAG|GAT | 1 | 1 | 60.944 |
2571625 | GT-AG | 0 | 1.000000099473604e-05 | 783 | rna-XM_029336728.2 442666 | 9 | 10128705 | 10129487 | Acropora millepora 45264 | AAG|GTAATGAGAT...GTCGTTTTATTT/CGTCGTTTTATT...TCAAG|AAT | 1 | 1 | 65.142 |
2571626 | GT-AG | 0 | 1.000000099473604e-05 | 930 | rna-XM_029336728.2 442666 | 10 | 10127625 | 10128554 | Acropora millepora 45264 | TTG|GTAAGTTGCT...TACTTTTTGTCT/TTGAGGCTAATT...TGTAG|ATT | 1 | 1 | 67.833 |
2571627 | GT-AG | 0 | 2.7497895650086816e-05 | 2009 | rna-XM_029336728.2 442666 | 11 | 10124360 | 10126368 | Acropora millepora 45264 | AAA|GTAAGTTCTT...TCTTGTTTAACG/TCTTGTTTAACG...TGTAG|GAG | 0 | 1 | 90.366 |
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]);