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

✎ View and edit SQL

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
99735953 GT-AG 0 1.000000099473604e-05 1997 rna-XM_019003936.2 18699375 1 33457040 33459036 Juglans regia 51240 AAG|GTCTGGTTAC...TTTGTTTGGATT/TAAGGTTTCATA...AATAG|GAG 1 1 1.274
99735954 GT-AG 0 0.000223757062278 97 rna-XM_019003936.2 18699375 2 33459150 33459246 Juglans regia 51240 CAA|GTAGGCCATT...AACTTTTTGATA/AACTTTTTGATA...TTCAG|GTT 0 1 4.622
99735955 GT-AG 0 4.54367502237225e-05 86 rna-XM_019003936.2 18699375 3 33459343 33459428 Juglans regia 51240 CAC|GTATGAGAGT...GTGTTCTAAATT/GGTGTTCTAAAT...ATCAG|GCT 0 1 7.467
99735956 GT-AG 0 1.749687050519076e-05 113 rna-XM_019003936.2 18699375 4 33459486 33459598 Juglans regia 51240 AAA|GTACGTCAGC...CATTGTTTGAAA/CATTGTTTGAAA...TACAG|TAT 0 1 9.156
99735957 GT-AG 0 1.000000099473604e-05 94 rna-XM_019003936.2 18699375 5 33459755 33459848 Juglans regia 51240 CTA|GTTCGTACCA...TCTTTCATGATC/ATCTCTTTCATG...GATAG|GAT 0 1 13.778
99735958 GT-AG 0 0.0212915249145381 196 rna-XM_019003936.2 18699375 6 33459934 33460129 Juglans regia 51240 GCG|GTATCAATCC...AATATATTAAAA/AATATATTAAAA...TGCAG|GCC 1 1 16.296
99735959 GT-AG 0 1.1484497017812691e-05 89 rna-XM_019003936.2 18699375 7 33460221 33460309 Juglans regia 51240 AAG|GTATGGAATT...CCCCCTATAACT/CTATAACTAAGC...TGTAG|AGA 2 1 18.993
99735960 GT-AG 0 1.000000099473604e-05 116 rna-XM_019003936.2 18699375 8 33460475 33460590 Juglans regia 51240 AAG|GTACTGCTCT...ATTTACTTATAT/AATTTACTTATA...AACAG|AGC 2 1 23.881
99735961 GT-AG 0 0.0862965309227768 534 rna-XM_019003936.2 18699375 9 33460787 33461320 Juglans regia 51240 CAG|GTATTCTTTA...CTTTCTGTATCG/TATCGGCTTACC...GATAG|GTT 0 1 29.689
99735962 GT-AG 0 1.000000099473604e-05 542 rna-XM_019003936.2 18699375 10 33461460 33462001 Juglans regia 51240 CAG|GTAAAACCAT...TATTCCTTAATC/ATATTCCTTAAT...TACAG|ATG 1 1 33.807
99735963 GT-AG 0 1.000000099473604e-05 818 rna-XM_019003936.2 18699375 11 33463867 33464684 Juglans regia 51240 AAG|GTTTGTTGAT...ATATTTTCAATG/CATATTTTCAAT...TGAAG|GTT 0 1 89.067
99735964 GT-AG 0 4.6676251889901405e-05 78 rna-XM_019003936.2 18699375 12 33464876 33464953 Juglans regia 51240 GGA|GTAAGTGCAG...TGTTTCTTAACT/TAACTACTCATT...ATCAG|GGA 2 1 94.726

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