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

✎ 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
204419479 GT-AG 0 0.0021933829540986 2579 rna-XM_038846089.1 36995235 1 3535227 3537805 Tripterygium wilfordii 458696 CAT|GTAATCTATC...GGGATGTTAACA/GGGATGTTAACA...AACAG|AGA 2 1 4.838
204419480 GT-AG 0 1.000000099473604e-05 245 rna-XM_038846089.1 36995235 2 3537876 3538120 Tripterygium wilfordii 458696 AAG|GTCATTAACA...GCTCCTTTAATA/TTTTTCTTCAAT...CTCAG|GTC 0 1 7.157
204419481 GT-AG 0 1.000000099473604e-05 300 rna-XM_038846089.1 36995235 3 3538227 3538526 Tripterygium wilfordii 458696 TTG|GTAAGTACAA...GTTCACTTACCT/TGTCTGTTCACT...ATCAG|CAA 1 1 10.669
204419482 GT-AG 0 0.0014925874074325 77 rna-XM_038846089.1 36995235 4 3538636 3538712 Tripterygium wilfordii 458696 CAA|GTATGTAGAG...CCTCTCTTACCA/CCCTCTCTTACC...TTTAG|TTG 2 1 14.281
204419483 GT-AG 0 1.000000099473604e-05 326 rna-XM_038846089.1 36995235 5 3538882 3539207 Tripterygium wilfordii 458696 GAG|GTAAGAATAT...TCTTTTTTGTTT/ATTTTTTCGATA...TACAG|GTT 0 1 19.881
204419484 GT-AG 0 0.0016900737247111 100 rna-XM_038846089.1 36995235 6 3539684 3539783 Tripterygium wilfordii 458696 CAA|GTATGGTGAT...TCATCCTTAATA/TAAGTTTTCATC...TATAG|GTC 2 1 35.653
204419485 GT-AG 0 1.000000099473604e-05 132 rna-XM_038846089.1 36995235 7 3539920 3540051 Tripterygium wilfordii 458696 CTG|GTGAGAAATA...AATTTTTTACCT/TAATTTTTTACC...TTCAG|GAC 0 1 40.159
204419486 GT-AG 0 1.1927382483218167e-05 78 rna-XM_038846089.1 36995235 8 3540301 3540378 Tripterygium wilfordii 458696 GAG|GTGCTCATTT...GATATCTTATGT/TCTTATGTAATT...TGCAG|GTT 0 1 48.41
204419487 GT-AG 0 1.000000099473604e-05 90 rna-XM_038846089.1 36995235 9 3540600 3540689 Tripterygium wilfordii 458696 TAG|GTAAAGTTGA...CTTTCTTTACAC/CCTTTCTTTACA...TGTAG|AGG 2 1 55.732
204419488 GT-AG 0 1.000000099473604e-05 173 rna-XM_038846089.1 36995235 10 3540949 3541121 Tripterygium wilfordii 458696 CAG|GTTGGTGCCT...ACTGCTTTAGAT/TTAGATCTCACA...TGCAG|ACC 0 1 64.314
204419489 GT-AG 0 0.0521156255851706 99 rna-XM_038846089.1 36995235 11 3541355 3541453 Tripterygium wilfordii 458696 TAG|GTATTCATTT...TTTCTTTTATTT/TTTTCTTTTATT...TATAG|GCG 2 1 72.034
204419490 GT-AG 0 0.0006460428876994 280 rna-XM_038846089.1 36995235 12 3541974 3542253 Tripterygium wilfordii 458696 CAG|GTATGTATAT...CACGTTTTAATG/CACGTTTTAATG...AACAG|GTT 0 1 89.264

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