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)

11 rows where transcript_id = 17645858

✎ 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
94519616 GT-AG 0 0.0005514341326284 1018 rna-XM_046816650.1 17645858 2 58480939 58481956 Homalodisca vitripennis 197043 AAA|GTAAGTTTTT...CTATTCTTGATG/CTTTAGTTGATT...TTTAG|GAT 2 1 3.949
94519617 GT-AG 0 3.869745141902773e-05 6855 rna-XM_046816650.1 17645858 3 58473895 58480749 Homalodisca vitripennis 197043 GAG|GTATATGCAA...GTGTTCTGATAT/AGTGTTCTGATA...TTTAG|AGA 2 1 6.703
94519618 GT-AG 0 1.000000099473604e-05 8697 rna-XM_046816650.1 17645858 5 58461061 58469757 Homalodisca vitripennis 197043 TAG|GTAAGTGATT...TTAATATTAAAT/TTAATATTAAAT...CACAG|AAG 1 1 66.968
94519619 GT-AG 0 1.000000099473604e-05 4154 rna-XM_046816650.1 17645858 6 58456672 58460825 Homalodisca vitripennis 197043 AGG|GTAAGTAATA...AATTTTTTCACC/AATTTTTTCACC...TTCAG|ATT 2 1 70.392
94519620 GT-AG 0 1.000000099473604e-05 3318 rna-XM_046816650.1 17645858 7 58453176 58456493 Homalodisca vitripennis 197043 AAG|GTACTGCCAC...AATTGTTTGACA/AATTGTTTGACA...GGCAG|CCG 0 1 72.986
94519621 GT-AG 0 1.000000099473604e-05 1856 rna-XM_046816650.1 17645858 8 58451128 58452983 Homalodisca vitripennis 197043 ATG|GTCTGTCATC...AAACTGTTGATG/CAGTTACTCAAA...TGTAG|ACT 0 1 75.783
94519622 GT-AG 0 2.4138648122846968e-05 2801 rna-XM_046816650.1 17645858 9 58448163 58450963 Homalodisca vitripennis 197043 TGT|GTAAGTAGTG...TTATCTTTGTCA/TCAGTTTTAAGT...TGTAG|GTT 2 1 78.173
94519623 GT-AG 0 0.0020833966385034 3274 rna-XM_046816650.1 17645858 10 58444714 58447987 Homalodisca vitripennis 197043 GAA|GTAATCACTC...GTTTTTTTAACA/GTTTTTTTAACA...TTCAG|GGG 0 1 80.723
94519624 GT-AG 0 0.0402421653580854 6482 rna-XM_046816650.1 17645858 11 58438043 58444524 Homalodisca vitripennis 197043 AAG|GTATTCATTC...ATTTCATTAAAC/TTACATTTCATT...TTCAG|AGG 0 1 83.477
94519625 GT-AG 0 0.0028324298699462 2564 rna-XM_046816650.1 17645858 12 58435275 58437838 Homalodisca vitripennis 197043 GAG|GTACGTTTTG...TTATTTTTAAAA/TTTATTTTTAAA...CTCAG|GTA 0 1 86.449
94534782 GT-AG 0 1.000000099473604e-05 4852 rna-XM_046816650.1 17645858 1 58482124 58486975 Homalodisca vitripennis 197043 CCT|GTGAGTTATT...TTGGCTCTAGTG/TTCCAATTAAAT...TACAG|GTT   0 2.258

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