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 = 17285699
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
92354356 | GT-AG | 0 | 1.000000099473604e-05 | 68 | rna-gnl|WGS:MCGT|DM01DRAFT_mRNA317473 17285699 | 1 | 1670811 | 1670878 | Hesseltinella vesiculosa 101127 | ATG|GTAAAGAAAA...ACAAACTTGATT/ACAAACTTGATT...GTTAG|AAC | 0 | 1 | 1.502 |
92354357 | GT-AG | 0 | 1.000000099473604e-05 | 49 | rna-gnl|WGS:MCGT|DM01DRAFT_mRNA317473 17285699 | 3 | 1670193 | 1670241 | Hesseltinella vesiculosa 101127 | ATG|GTAAGCCCCA...TGGTACTAAACT/GTGGTACTAAAC...AAAAG|AAT | 1 | 1 | 19.653 |
92354358 | GT-AG | 0 | 2.06617026990122e-05 | 64 | rna-gnl|WGS:MCGT|DM01DRAFT_mRNA317473 17285699 | 4 | 1669556 | 1669619 | Hesseltinella vesiculosa 101127 | TTG|GTAAACAAAT...ACTTCTTTTACT/CTTTTACTCACT...TGCAG|TCC | 1 | 1 | 38.772 |
92354359 | GT-AG | 0 | 3.207721317224162e-05 | 90 | rna-gnl|WGS:MCGT|DM01DRAFT_mRNA317473 17285699 | 5 | 1669212 | 1669301 | Hesseltinella vesiculosa 101127 | TCC|GTAAGCAATT...TTCACTTTGCAC/ATCCTGTTCACT...GATAG|GAC | 0 | 1 | 47.247 |
92354360 | GT-AG | 0 | 1.000000099473604e-05 | 46 | rna-gnl|WGS:MCGT|DM01DRAFT_mRNA317473 17285699 | 6 | 1669033 | 1669078 | Hesseltinella vesiculosa 101127 | CAG|GTAAGGTAAA...ACCGCCCTAACC/GCCATTGTCACC...TTTAG|AAT | 1 | 1 | 51.685 |
92354361 | GT-AG | 0 | 1.000000099473604e-05 | 51 | rna-gnl|WGS:MCGT|DM01DRAFT_mRNA317473 17285699 | 7 | 1668494 | 1668544 | Hesseltinella vesiculosa 101127 | AAG|GTGAGTCCTG...TTGCCCTGAAAA/CCATGGCTCATT...TTTAG|GTC | 0 | 1 | 67.968 |
92354362 | GT-AG | 0 | 0.048468501911471 | 59 | rna-gnl|WGS:MCGT|DM01DRAFT_mRNA317473 17285699 | 8 | 1668343 | 1668401 | Hesseltinella vesiculosa 101127 | AAG|GTAACCTATT...TTTTTTTCAACA/TTTTTTTTCAAC...CCAAG|CTT | 2 | 1 | 71.038 |
92354363 | GT-AG | 0 | 1.000000099473604e-05 | 55 | rna-gnl|WGS:MCGT|DM01DRAFT_mRNA317473 17285699 | 9 | 1668111 | 1668165 | Hesseltinella vesiculosa 101127 | AAA|GTAAGGGACA...GCTGACGGAGTT/ACAAGGCTGACG...CTTAG|GTT | 2 | 1 | 76.944 |
92354364 | GT-AG | 0 | 0.000563751902668 | 67 | rna-gnl|WGS:MCGT|DM01DRAFT_mRNA317473 17285699 | 10 | 1667653 | 1667719 | Hesseltinella vesiculosa 101127 | CGC|GTAAGCCACT...TTTTTCTTACTC/TTTTTTCTTACT...TGTAG|TTG | 0 | 1 | 89.99 |
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]);