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 = 23121116

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
125746314 GT-AG 0 0.0001621091335626 1306 rna-XM_010268068.2 23121116 1 3630660 3631965 Nelumbo nucifera 4432 CGG|GTACGCACTT...TGTTTATTGATG/TGTTTATTGATG...GGCAG|GAA 1 1 1.506
125746315 GT-AG 0 1.000000099473604e-05 480 rna-XM_010268068.2 23121116 2 3629998 3630477 Nelumbo nucifera 4432 ATG|GTTAGTCTCA...TACCTATTGATG/TGACTTCTAATT...TCCAG|CCA 0 1 7.878
125746316 GT-AG 0 0.0001249654663956 118 rna-XM_010268068.2 23121116 3 3629556 3629673 Nelumbo nucifera 4432 AAG|GTAACTCAAA...TTTTCTTTTATG/TTTTCTTTTATG...TCCAG|GAA 0 1 19.223
125746317 GT-AG 0 2.1161408651455207e-05 5453 rna-XM_010268068.2 23121116 4 3624010 3629462 Nelumbo nucifera 4432 CAG|GTACTTCCTT...GATATGTTAGTT/AGGAGATTCACT...GTCAG|GCT 0 1 22.479
125746318 GT-AG 0 0.0009129082784525 107 rna-XM_010268068.2 23121116 5 3623810 3623916 Nelumbo nucifera 4432 TGG|GTATGTGCTA...ATTATTTTGATT/ATTATTTTGATT...TGCAG|TTC 0 1 25.735
125746319 GT-AG 0 0.0003311197806637 1706 rna-XM_010268068.2 23121116 6 3621996 3623701 Nelumbo nucifera 4432 GAG|GTATGTTGAT...TTTTTTTTCATT/TTTTTTTTCATT...TGCAG|GTT 0 1 29.517
125746320 GT-AG 0 1.000000099473604e-05 2670 rna-XM_010268068.2 23121116 7 3619276 3621945 Nelumbo nucifera 4432 CCG|GTATGACACT...TGCAATTTAGCA/TTGCAATTTAGC...TTCAG|GTT 2 1 31.268
125746321 GT-AG 0 1.000000099473604e-05 99 rna-XM_010268068.2 23121116 8 3618959 3619057 Nelumbo nucifera 4432 AAG|GTAAATGTGA...CACTTCCTGATT/CACTTCCTGATT...TTTAG|ATT 1 1 38.901
125746322 GT-AG 0 1.000000099473604e-05 4046 rna-XM_010268068.2 23121116 9 3614450 3618495 Nelumbo nucifera 4432 CAG|GTTTTGCCTC...TGTTTCTCATTA/GTGTTTCTCATT...TTCAG|GTA 2 1 55.112
125746323 GT-AG 0 1.0961216536874073e-05 114 rna-XM_010268068.2 23121116 10 3614005 3614118 Nelumbo nucifera 4432 CAG|GTATGAACTA...CTTTTCTTTTTG/GGTTGTTTCAGT...TTCAG|GCA 0 1 66.702
125746324 GT-AG 0 1.000000099473604e-05 102 rna-XM_010268068.2 23121116 11 3613708 3613809 Nelumbo nucifera 4432 AAG|GTCTGGGACA...CAGTTCATGAAT/TGGTATTTCACT...TTCAG|GTG 0 1 73.529
125746325 GT-AG 0 1.000000099473604e-05 16188 rna-XM_010268068.2 23121116 12 3597367 3613554 Nelumbo nucifera 4432 AAG|GTGCAAACTT...TAATTCTTGATT/TAATTCTTGATT...TATAG|AAC 0 1 78.887
125746326 GT-AG 0 1.000000099473604e-05 114 rna-XM_010268068.2 23121116 13 3597043 3597156 Nelumbo nucifera 4432 GAG|GTAAAGTCCT...TATTTTTTATGT/TTATTTTTTATG...TTCAG|GCA 0 1 86.239

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