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)
9 rows where transcript_id = 11997962
This data as json, CSV (advanced)
Suggested facets: score, phase, in_cds
id ▼ | dinucleotide_pair | is_minor | score | length | transcript_id | ordinal_index | start | end | taxonomy_id | scored_motifs | phase | in_cds | relative_position |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
65073727 | GT-AG | 0 | 1.000000099473604e-05 | 845 | rna-XM_026108615.1 11997962 | 3 | 5563512 | 5564356 | Dromaius novaehollandiae 8790 | CAG|GTGAGTACCT...GTGTCCTCTACT/AATACAATGAAA...TCTAG|GTA | 2 | 1 | 37.718 |
65073728 | GT-AG | 0 | 1.000000099473604e-05 | 1212 | rna-XM_026108615.1 11997962 | 4 | 5564463 | 5565674 | Dromaius novaehollandiae 8790 | AAT|GTAAGAACGA...CCTTTCTGATTG/GCCTTTCTGATT...CCCAG|ACA | 0 | 1 | 43.504 |
65073729 | GT-AG | 0 | 1.000000099473604e-05 | 98 | rna-XM_026108615.1 11997962 | 5 | 5565814 | 5565911 | Dromaius novaehollandiae 8790 | GTG|GTAAAAAACA...TACTCTTGAAGT/GCAGGACTAATA...TTCAG|GTG | 1 | 1 | 51.092 |
65073730 | GT-AG | 0 | 1.1627664451059045e-05 | 335 | rna-XM_026108615.1 11997962 | 6 | 5565969 | 5566303 | Dromaius novaehollandiae 8790 | AAG|GTAACAAACG...TATACCTTTTTT/ACTCTACTCACA...TTCAG|CCC | 1 | 1 | 54.203 |
65073731 | GT-AG | 0 | 1.000000099473604e-05 | 500 | rna-XM_026108615.1 11997962 | 7 | 5566372 | 5566871 | Dromaius novaehollandiae 8790 | CAG|GTAAGTCAGT...GGTGCCGTAGCT/CGTAGCTTCACC...AACAG|CTT | 0 | 1 | 57.915 |
65073732 | GT-AG | 0 | 1.000000099473604e-05 | 583 | rna-XM_026108615.1 11997962 | 8 | 5567005 | 5567587 | Dromaius novaehollandiae 8790 | CAG|GTACAATGAA...AATTTCTAAGTT/CTTCTGTTTACT...TCCAG|CGG | 1 | 1 | 65.175 |
65073733 | GT-AG | 0 | 0.0017970807719785 | 288 | rna-XM_026108615.1 11997962 | 9 | 5568090 | 5568377 | Dromaius novaehollandiae 8790 | TCG|GTAACTATAT...CTGGTGTTAACC/CTGGTGTTAACC...TGCAG|AGG | 2 | 1 | 92.576 |
65074158 | GT-AG | 0 | 1.000000099473604e-05 | 5160 | rna-XM_026108615.1 11997962 | 1 | 5557345 | 5562504 | Dromaius novaehollandiae 8790 | CAA|GTGAGGAAAC...AGAGTTTTGAAA/TAATATTTCATG...CCTAG|GCG | 0 | 12.555 | |
65074159 | GT-AG | 0 | 1.000000099473604e-05 | 512 | rna-XM_026108615.1 11997962 | 2 | 5562661 | 5563172 | Dromaius novaehollandiae 8790 | ACA|GTAAGAATTT...AACGTCTTCCCG/CCGGGGCGCAGC...CCCAG|GCC | 0 | 21.07 |
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]);