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)

14 rows where transcript_id = 25439181

✎ View and edit SQL

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
140325488 GT-AG 0 0.0269826450074596 1227 rna-XM_026021455.1 25439181 2 32782851 32784077 Oryza sativa 4530 ATG|GTATCAAAAC...ATTTCCTTGTTT/GTTGAATTTAGC...CACAG|ATC 1 1 2.989
140325489 GT-AG 0 0.0008557946920838 1438 rna-XM_026021455.1 25439181 3 32781182 32782619 Oryza sativa 4530 CTG|GTATGCAAAT...TTTATTGTAATT/CTACATTTCATT...GTCAG|TTA 1 1 8.891
140325490 GT-AG 0 1.2313350712009874e-05 164 rna-XM_026021455.1 25439181 4 32780897 32781060 Oryza sativa 4530 ATG|GTAGGATTCC...ATTCCATTGACT/CATTGACTGACA...TGCAG|GTA 2 1 11.983
140325491 GT-AG 0 0.0024692811675116 76 rna-XM_026021455.1 25439181 5 32780732 32780807 Oryza sativa 4530 CAG|GTTTGCTGTT...ACACCCTTAACA/GTGTTCCTCACA...TTCAG|GAT 1 1 14.257
140325492 GT-AG 0 1.000000099473604e-05 72 rna-XM_026021455.1 25439181 6 32780591 32780662 Oryza sativa 4530 CAG|GTGAGGCAAT...TATTGTTTGAAT/CAGAGTTTAACT...TGCAG|ACA 1 1 16.019
140325493 GT-AG 0 1.000000099473604e-05 529 rna-XM_026021455.1 25439181 7 32779932 32780460 Oryza sativa 4530 CAG|GTAGGCAGTT...TGCTTTTCAATA/CTGCTTTTCAAT...TGGAG|GGA 2 1 19.341
140325494 GT-AG 0 1.000000099473604e-05 127 rna-XM_026021455.1 25439181 8 32779646 32779772 Oryza sativa 4530 CAG|GTTATACAAT...GTGTTTTTAAAA/TTAATACTAACA...TGCAG|TTT 2 1 23.403
140325495 GT-AG 0 1.000000099473604e-05 1000 rna-XM_026021455.1 25439181 9 32778276 32779275 Oryza sativa 4530 AAG|GTAGGTATTT...TCATTCTCATCT/ATTTATCTCACT...TCTAG|GAT 0 1 32.856
140325496 GT-AG 0 1.000000099473604e-05 900 rna-XM_026021455.1 25439181 10 32777266 32778165 Oryza sativa 4530 CAG|GTAATATATT...TGCCTCTTACAT/AACCTTTTCATC...ATTAG|TGG 2 1 35.667
140325497 GT-AG 0 1.000000099473604e-05 89 rna-XM_026021455.1 25439181 11 32777026 32777114 Oryza sativa 4530 CAG|GTTAATTTTT...TTTGTTTTACTC/TTTTGTTTTACT...TTCAG|GCA 0 1 39.525
140325498 GT-AG 0 7.63049266257516e-05 92 rna-XM_026021455.1 25439181 12 32776730 32776821 Oryza sativa 4530 GAG|GTATGTCAAA...AGCCTGTTAATA/ATGATGTTGATG...TTCAG|ATT 0 1 44.737
140325499 GT-AG 0 1.000000099473604e-05 77 rna-XM_026021455.1 25439181 13 32776525 32776601 Oryza sativa 4530 CAG|GTTGGTTAGC...TTTGTCTTAATT/TTTGTCTTAATT...CACAG|AGG 2 1 48.007
140325500 GT-AG 0 1.000000099473604e-05 754 rna-XM_026021455.1 25439181 14 32775584 32776337 Oryza sativa 4530 GAG|GTTAAGTTAT...CTATTTCTATTT/TTTCTATTTATG...AACAG|AAG 0 1 52.785
140340895 GT-AG 0 1.034452264550129 90 rna-XM_026021455.1 25439181 1 32784189 32784278 Oryza sativa 4530 ACG|GTATTTTCTA...AAATCCTTAACC/TTCCTTTTCAAA...CACAG|ACA   0 1.814

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 827.735ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)