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

✎ 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
48131090 GT-AG 0 1.000000099473604e-05 122 rna-XM_027296042.1 8933562 1 45898414 45898535 Coffea eugenioides 49369 CAG|GTGCTGAGCT...TTTTTTTTAAAA/TTTTTTTTAAAA...TGCAG|GGT 2 1 7.604
48131091 GT-AG 0 0.0005638041279814 408 rna-XM_027296042.1 8933562 2 45898647 45899054 Coffea eugenioides 49369 GAA|GTATGATATC...ATGCCATTGATA/CAGAAACTCACT...TTCAG|GAT 2 1 10.371
48131092 GT-AG 0 1.000000099473604e-05 276 rna-XM_027296042.1 8933562 3 45899403 45899678 Coffea eugenioides 49369 CAT|GTGAGAATCT...TACACTTTGGTC/TGGCATCTAATT...ATTAG|GCC 2 1 19.048
48131093 GT-AG 0 0.0188818522794554 105 rna-XM_027296042.1 8933562 4 45899999 45900103 Coffea eugenioides 49369 CTG|GTATGCTTCT...ACTTCCTGGAGA/CTGTGTGTTACA...TCCAG|GTC 1 1 27.026
48131094 GT-AG 0 1.000000099473604e-05 1620 rna-XM_027296042.1 8933562 5 45900196 45901815 Coffea eugenioides 49369 AGG|GTAAGAAGGC...GTTTTCCTAATT/GTTTTCCTAATT...TTTAG|GAA 0 1 29.319
48131095 GT-AG 0 1.000000099473604e-05 445 rna-XM_027296042.1 8933562 6 45902174 45902618 Coffea eugenioides 49369 GTT|GTGAGTATCT...ATTTCCATATCT/CCATATCTGATA...TGTAG|CTG 1 1 38.245
48131096 GT-AG 0 1.000000099473604e-05 1004 rna-XM_027296042.1 8933562 7 45902830 45903833 Coffea eugenioides 49369 AAG|GTAGGAGAAA...TGAATTTAAGCT/TTTAAGCTCATG...GGAAG|CTT 2 1 43.505
48131097 GT-AG 0 35.33715728945827 250 rna-XM_027296042.1 8933562 8 45903949 45904198 Coffea eugenioides 49369 CAG|GTATCCTGTT...ATAACTTTAACT/ATAACTTTAACT...TGCAG|GAA 0 1 46.372
48131098 GT-AG 0 1.000000099473604e-05 407 rna-XM_027296042.1 8933562 9 45904361 45904767 Coffea eugenioides 49369 TTG|GTAGGTGAAA...GTGAATTTGATT/GTGAATTTGATT...TCCAG|GTT 0 1 50.411
48131099 GT-AG 0 1.000000099473604e-05 855 rna-XM_027296042.1 8933562 10 45905429 45906283 Coffea eugenioides 49369 CGG|GTTAGTAAAT...TTCTTCATAACT/TTTTTCTTCATA...TCTAG|GGC 1 1 66.891
48131100 GT-AG 0 0.0015044987575806 342 rna-XM_027296042.1 8933562 11 45906491 45906832 Coffea eugenioides 49369 TAG|GTATGTTCTT...AATGACTTAGTT/TTTTTAATGACT...TGCAG|GTG 1 1 72.052

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