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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
1929977 GT-AG 0 1.000000099473604e-05 202 Acora.01G127200.1.v1.1 310667 1 26655851 26656052 Acorus americanus 263995 GAG|GTGTGTCAGT...TATATCTCAACT/TTATATCTCAAC...TGCAG|CTT 0 1 50.928
1929978 GT-AG 0 1.000000099473604e-05 87 Acora.01G127200.1.v1.1 310667 2 26655635 26655721 Acorus americanus 263995 AGG|GTAATTGTTG...TCCTGCTTGGTT/TAGGGTCTCAAG...GGCAG|GCG 0 1 53.589
1929979 GT-AG 0 1.000000099473604e-05 88 Acora.01G127200.1.v1.1 310667 3 26655352 26655439 Acorus americanus 263995 AAG|GTTGTACATT...GGTTTCTGGATT/GATTGTTTTAGG...CGCAG|TCG 0 1 57.611
1929980 GT-AG 0 2.636200255262397 5356 Acora.01G127200.1.v1.1 310667 4 26649925 26655280 Acorus americanus 263995 GCT|GTATGTTTCT...TCTTTTTTAATG/TCTTTTTTAATG...TGCAG|TGC 2 1 59.076
1929981 GT-AG 0 1.000000099473604e-05 121 Acora.01G127200.1.v1.1 310667 5 26649172 26649292 Acorus americanus 263995 AAG|GTCTTGATTT...CATACCTTACAA/GAGTTTCTCAAT...TGCAG|GAT 1 1 72.112
1929982 GT-AG 0 1.000000099473604e-05 1589 Acora.01G127200.1.v1.1 310667 6 26647394 26648982 Acorus americanus 263995 CAG|GTGACAATTT...AATTTTTTGTTC/TTTTTGTTCAAT...TCCAG|GAG 1 1 76.011
1929983 GT-AG 0 1.000000099473604e-05 2447 Acora.01G127200.1.v1.1 310667 7 26644848 26647294 Acorus americanus 263995 TCG|GTTAGTACAA...TCTTTCTTTTCG/ATAGAACTGATA...ATCAG|ATG 1 1 78.053
1929984 GT-AG 0 0.0001834056770873 90 Acora.01G127200.1.v1.1 310667 8 26644642 26644731 Acorus americanus 263995 CAG|GTCTGTCTTT...TTACCTTTAGTC/CATCTACTCACT...TTCAG|TCA 0 1 80.446
1929985 GT-AG 0 1.000000099473604e-05 159 Acora.01G127200.1.v1.1 310667 9 26644267 26644425 Acorus americanus 263995 CAA|GTAAGTACAA...TAATTCTTATTG/CTAATTCTTATT...AACAG|GCT 0 1 84.901
1929986 GC-AG 0 1.200934076523526e-05 115 Acora.01G127200.1.v1.1 310667 10 26643876 26643990 Acorus americanus 263995 AAG|GCATGTTTAA...ATATATTTAATG/AATATATTTAAT...CTCAG|AGT 0 1 90.594
1929987 GT-AG 0 0.0002341275468376 98 Acora.01G127200.1.v1.1 310667 11 26643630 26643727 Acorus americanus 263995 CTG|GTATAAAACT...ATGGTTTTAACT/ATGGTTTTAACT...TTCAG|TTC 1 1 93.647
1929988 GT-AG 0 0.000484547003755 5222 Acora.01G127200.1.v1.1 310667 12 26638274 26643495 Acorus americanus 263995 GTG|GTATGTTCAT...TTTATGTTATAC/ATATAGTTTATG...TGCAG|GTT 0 1 96.411
1929989 GT-AG 0 0.0004156683606279 78 Acora.01G127200.1.v1.1 310667 13 26638109 26638186 Acorus americanus 263995 AAG|GTATAACTTT...TTCCTTTTATTG/TTTCCTTTTATT...CCCAG|GTA 0 1 98.205

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