home / WtMTA

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)

13 rows where transcript_id = 20781802

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
111341758 GT-AG 0 0.0111526141451538 603 rna-XM_021737939.2 20781802 1 32522193 32522795 Manihot esculenta 3983 AAG|GTTTACCTTT...TACTTCTTAATC/TTTAATTTTACT...TGCAG|TTT 1 1 3.114
111341759 GT-AG 0 1.000000099473604e-05 490 rna-XM_021737939.2 20781802 2 32521612 32522101 Manihot esculenta 3983 TGG|GTGAGTGCTG...ATTTTCTTATGG/TATTTTCTTATG...TGCAG|GCG 2 1 5.578
111341760 GT-AG 0 1.000000099473604e-05 223 rna-XM_021737939.2 20781802 3 32521076 32521298 Manihot esculenta 3983 CAG|GTTTATGAAG...GATTTCTGAGAT/AGTAGTCTGACA...TGCAG|ATT 0 1 14.054
111341761 GC-AG 0 1.000000099473604e-05 251 rna-XM_021737939.2 20781802 4 32520750 32521000 Manihot esculenta 3983 CAG|GCAATTTCCT...ATAATCTTATAT/ACTTGTTTCACA...TGCAG|GTT 0 1 16.084
111341762 GT-AG 0 1.3648806615972424e-05 1288 rna-XM_021737939.2 20781802 5 32519417 32520704 Manihot esculenta 3983 CAG|GTTACTAATT...AGGTTCTTAGAA/ACAAGCTTCATT...TATAG|GTC 0 1 17.303
111341763 GT-AG 0 0.0512478263295253 120 rna-XM_021737939.2 20781802 6 32519206 32519325 Manihot esculenta 3983 CAG|GTATGCTTTG...TCTTTGTTATTT/CTCTTTGTTATT...TCTAG|TTG 1 1 19.767
111341764 GT-AG 0 0.0008913528812124 505 rna-XM_021737939.2 20781802 7 32518642 32519146 Manihot esculenta 3983 AAG|GTAATCTTTA...TGTACCATAGCT/CCATAGCTGACT...GCTAG|ATT 0 1 21.365
111341765 GT-AG 0 0.0014998657526605 237 rna-XM_021737939.2 20781802 8 32518243 32518479 Manihot esculenta 3983 GTG|GTATTTAGTT...ATAGTTTTGATG/TTGATCTTCATT...TGTAG|GAT 0 1 25.751
111341766 GT-AG 0 0.0003348441344444 245 rna-XM_021737939.2 20781802 9 32517945 32518189 Manihot esculenta 3983 CAG|GTACTTCATT...TTTCTCTTATCA/TCATTTCTTACT...TGCAG|AGA 2 1 27.187
111341767 GT-AG 0 1.000000099473604e-05 131 rna-XM_021737939.2 20781802 10 32517780 32517910 Manihot esculenta 3983 CTG|GTTAGTTCAA...TGTATTTTATCC/CATTTACTTATC...AACAG|ATA 0 1 28.107
111341768 GT-AG 0 0.0001271965554617 86 rna-XM_021737939.2 20781802 11 32517604 32517689 Manihot esculenta 3983 CCT|GTAATACTCT...TGTACCTTGATA/ATTTATCTAAAT...TTCAG|GTC 0 1 30.544
111341769 GT-AG 0 2.617606540589261e-05 244 rna-XM_021737939.2 20781802 12 32516355 32516598 Manihot esculenta 3983 CAA|GTAAAGTTTT...ATATTCTGAATC/CATATTCTGAAT...TACAG|GTG 0 1 57.758
111341770 GT-AG 0 0.0003001825889086 76 rna-XM_021737939.2 20781802 13 32515172 32515247 Manihot esculenta 3983 AAA|GTAATTATTA...TTTACTTTAATC/TCTTGATTTACT...TGTAG|GTA 0 1 87.734

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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]);
Powered by Datasette · Queries took 29.007ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)