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

✎ 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
204419669 GT-AG 0 0.0408051756509914 408 rna-XM_038845036.1 36995253 2 451106 451513 Tripterygium wilfordii 458696 AAG|GTATGCTGCG...GTTGACTTAATT/GTTTTGTTGACT...GGCAG|ATT 1 1 7.473
204419670 GT-AG 0 0.0056401639239093 819 rna-XM_038845036.1 36995253 3 450161 450979 Tripterygium wilfordii 458696 AAA|GTAACTACTC...ATGCTTTTAGTT/CTTGGTTTCATT...AACAG|GTG 1 1 11.793
204419671 GT-AG 0 1.000000099473604e-05 646 rna-XM_038845036.1 36995253 4 449399 450044 Tripterygium wilfordii 458696 AAA|GTGAGATTTA...CCCATTTTATTT/ATATGTTTGATA...TTTAG|GTT 0 1 15.77
204419672 GT-AG 0 0.0006041445963997 150 rna-XM_038845036.1 36995253 5 449160 449309 Tripterygium wilfordii 458696 CAA|GTATGTGATA...TGTTTGTTAATT/TGTTTGTTAATT...TTCAG|GTC 2 1 18.821
204419673 GT-AG 0 0.0024634213942106 889 rna-XM_038845036.1 36995253 6 448228 449116 Tripterygium wilfordii 458696 GAG|GTTTGTTTTC...TAATTCTTATCG/TTAATTCTTATC...TACAG|TTG 0 1 20.295
204419674 GT-AG 0 1.000000099473604e-05 159 rna-XM_038845036.1 36995253 7 447951 448109 Tripterygium wilfordii 458696 TAG|GTGAGCTTGT...ATACACTTATAC/TGTGAACTCATT...AGCAG|AGC 1 1 24.34
204419675 GT-AG 0 1.000000099473604e-05 94 rna-XM_038845036.1 36995253 8 447740 447833 Tripterygium wilfordii 458696 GAG|GTGAGGAACT...CTGTCTTTATCA/ACTGTCTTTATC...TTCAG|GCA 1 1 28.351
204419676 GT-AG 0 8.593476165760372e-05 381 rna-XM_038845036.1 36995253 9 447300 447680 Tripterygium wilfordii 458696 GAT|GTAAACACAT...GTTTGTTTGATT/GTTTGTTTGATT...TCCAG|GGT 0 1 30.374
204419677 GT-AG 0 4.6376569454171695e-05 1169 rna-XM_038845036.1 36995253 10 445702 446870 Tripterygium wilfordii 458696 AAG|GTTCTTTTTT...TTTATATTGACA/TTTATATTGACA...TGCAG|ATT 0 1 45.081
204419678 GT-AG 0 0.001240792319292 254 rna-XM_038845036.1 36995253 11 444750 445003 Tripterygium wilfordii 458696 AAG|GTATGCATAG...GATATCTAAATG/GAAAAATTTATT...TGTAG|GGA 2 1 69.009
204419679 GT-AG 0 1.000000099473604e-05 469 rna-XM_038845036.1 36995253 12 443734 444202 Tripterygium wilfordii 458696 CAG|GTAAGGCCTG...TGCAACTTAATT/AAACCACTGATT...TGTAG|GCT 0 1 87.761
204419680 GT-AG 0 1.000000099473604e-05 93 rna-XM_038845036.1 36995253 13 443332 443424 Tripterygium wilfordii 458696 GAG|GTAGTTATTT...AATGAATTAATT/AATGAATTAATT...CGCAG|CTT 0 1 98.354
204423936 GT-AG 0 0.0003999573914396 149 rna-XM_038845036.1 36995253 1 451578 451726 Tripterygium wilfordii 458696 TCG|GTAATCATCG...TTTTCTTGGATT/AGATTTCTGATT...TGAAG|ATG   0 5.279

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