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 = 11997965
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
65073752 | GT-AG | 0 | 1.000000099473604e-05 | 3366 | rna-XM_026092460.1 11997965 | 1 | 6642759 | 6646124 | Dromaius novaehollandiae 8790 | CGG|GTGAGTGTGA...GAGACTTTAGCA/TTAAAACTGATC...TCCAG|GGA | 2 | 1 | 5.874 |
65073753 | GT-AG | 0 | 1.000000099473604e-05 | 396 | rna-XM_026092460.1 11997965 | 2 | 6642287 | 6642682 | Dromaius novaehollandiae 8790 | CTG|GTAAGTAAGA...TCTTTCTTATCC/TTCTTTCTTATC...CCCAG|CTG | 0 | 1 | 11.454 |
65073754 | GT-AG | 0 | 0.0008195722452877 | 2478 | rna-XM_026092460.1 11997965 | 3 | 6639684 | 6642161 | Dromaius novaehollandiae 8790 | CGA|GTATGACCTC...GTTTTCTTTTCT/TAATAGTTGAGT...CTCAG|AGT | 2 | 1 | 20.631 |
65073755 | GT-AG | 0 | 1.000000099473604e-05 | 1068 | rna-XM_026092460.1 11997965 | 4 | 6638501 | 6639568 | Dromaius novaehollandiae 8790 | GAG|GTAAAGAGGA...TGCCCCTTAGCA/TTTTCTGTGACT...TTCAG|ATT | 0 | 1 | 29.075 |
65073756 | GT-AG | 0 | 1.000000099473604e-05 | 766 | rna-XM_026092460.1 11997965 | 5 | 6637633 | 6638398 | Dromaius novaehollandiae 8790 | CAG|GTAAGAGAGG...GCTATTTTATTG/TTTATTGTAACA...CTCAG|ATC | 0 | 1 | 36.564 |
65073757 | GT-AG | 0 | 1.000000099473604e-05 | 608 | rna-XM_026092460.1 11997965 | 6 | 6636920 | 6637527 | Dromaius novaehollandiae 8790 | GAA|GTGAGTCCTC...CAGTCCTTTGTA/TCTCTGTTCAGT...TTCAG|ATT | 0 | 1 | 44.273 |
65073758 | GT-AG | 0 | 1.000000099473604e-05 | 1033 | rna-XM_026092460.1 11997965 | 7 | 6635776 | 6636808 | Dromaius novaehollandiae 8790 | AAA|GTAAGTAGTG...GGAGCCTTTACA/TTGATTGTAACT...TTTAG|GAA | 0 | 1 | 52.423 |
65073759 | GT-AG | 0 | 0.0007963317362753 | 584 | rna-XM_026092460.1 11997965 | 8 | 6635101 | 6635684 | Dromaius novaehollandiae 8790 | GCA|GTAAGTTCTG...CTTTTTTTATTC/ACTTTTTTTATT...TCCAG|GTA | 1 | 1 | 59.104 |
65073760 | GT-AG | 0 | 1.000000099473604e-05 | 1266 | rna-XM_026092460.1 11997965 | 9 | 6633632 | 6634897 | Dromaius novaehollandiae 8790 | CTG|GTAGGGCAAA...CCTATTTTGAAC/CTGGTACTAATG...TGCAG|ATG | 0 | 1 | 74.009 |
65073761 | GT-AG | 0 | 0.0006002739650087 | 1225 | rna-XM_026092460.1 11997965 | 10 | 6632322 | 6633546 | Dromaius novaehollandiae 8790 | TAT|GTAAGTTTAT...CTATTTTTAAAT/CTATTTTTAAAT...TGCAG|ACA | 1 | 1 | 80.25 |
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]);