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)

12 rows where transcript_id = 18666398

✎ 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
99589903 GT-AG 0 0.002961671719764 2029 rna-XM_041151642.1 18666398 2 37974722 37976750 Juglans microcarpa x juglans regia 2249226 GAG|GTATGCCTTT...GTTCCTTTTGTA/TAATTGTTCACA...TATAG|GGC 1 1 9.642
99589904 GT-AG 0 0.000110988619433 793 rna-XM_041151642.1 18666398 3 37976863 37977655 Juglans microcarpa x juglans regia 2249226 ATG|GTATGGGTCT...TTAGTTTTAACC/TTAGTTTTAACC...TGCAG|GTA 2 1 12.772
99589905 GT-AG 0 1.000000099473604e-05 99 rna-XM_041151642.1 18666398 4 37977745 37977843 Juglans microcarpa x juglans regia 2249226 CAG|GTTTGATATA...ATGCTTGTAATT/CTTGTAATTATA...AACAG|GCT 1 1 15.26
99589906 GT-AG 0 1.000000099473604e-05 88 rna-XM_041151642.1 18666398 5 37977913 37978000 Juglans microcarpa x juglans regia 2249226 CTG|GTTGGTTGTT...GAGTTTTTAATA/GAGTTTTTAATA...TGTAG|ATA 1 1 17.188
99589907 GT-AG 0 4.920380842376782e-05 814 rna-XM_041151642.1 18666398 6 37978131 37978944 Juglans microcarpa x juglans regia 2249226 AAG|GTGTGCTACA...TTTATCTTCACG/CAGTTATTTATC...TGTAG|GGA 2 1 20.822
99589908 GT-AG 0 0.0007191816524452 291 rna-XM_041151642.1 18666398 7 37979104 37979394 Juglans microcarpa x juglans regia 2249226 AAG|GTATTTCATG...ATTTCTTTGTTT/TTTTTTCTGATG...TGCAG|CTT 2 1 25.266
99589909 GT-AG 0 0.0001994125460094 246 rna-XM_041151642.1 18666398 8 37979744 37979989 Juglans microcarpa x juglans regia 2249226 AAG|GTGTGCTGCT...AATCTTTTGATG/CTTTTGATGACT...TGCAG|GAT 0 1 35.02
99589910 GT-AG 0 4.216773745271778e-05 2455 rna-XM_041151642.1 18666398 9 37980103 37982557 Juglans microcarpa x juglans regia 2249226 CAG|GTAGTTATTT...TTCCTCTTTACA/TTCCTCTTTACA...TGCAG|CAA 2 1 38.178
99589911 GT-AG 0 1.0287826660921622e-05 1124 rna-XM_041151642.1 18666398 10 37982712 37983835 Juglans microcarpa x juglans regia 2249226 AAG|GTTTAATATT...TAATCATTGACT/TTTGTTTTTACA...TACAG|GCC 0 1 42.482
99589912 GT-AG 0 1.000000099473604e-05 90 rna-XM_041151642.1 18666398 11 37984309 37984398 Juglans microcarpa x juglans regia 2249226 CAG|GTAATATATG...AGTTCTTTATTT/TTTTTTCTGATT...TGTAG|GGG 2 1 55.702
99589913 GT-AG 0 1.000000099473604e-05 421 rna-XM_041151642.1 18666398 12 37984601 37985021 Juglans microcarpa x juglans regia 2249226 AAG|GTGGAGTAAC...GTTGCTTTTCTA/TTGAACATGACT...TATAG|GAA 0 1 61.347
99601090 GT-AG 0 1.000000099473604e-05 726 rna-XM_041151642.1 18666398 1 37973758 37974483 Juglans microcarpa x juglans regia 2249226 CAG|GTTCGTACGC...TGTACTTTGATA/TTTTTGTTAATA...GACAG|GTT   0 4.667

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