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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, scored_motifs, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
161300930 GT-AG 0 0.0007434661812576 487 rna-XM_024592400.1 28932372 1 43801910 43802396 Populus trichocarpa 3694 CAG|GTATGAATTT...TGTCCTTTAACT/TGTCCTTTAACT...TGTAG|ATA 1 1 25.58
161300931 GT-AG 0 0.0030814199387963 183 rna-XM_024592400.1 28932372 2 43802538 43802720 Populus trichocarpa 3694 ACA|GTACGTAATT...TCTTTCTTATTC/TTCTTTCTTATT...GCCAG|TTA 1 1 28.427
161300932 GT-AG 0 1.000000099473604e-05 265 rna-XM_024592400.1 28932372 3 43802894 43803158 Populus trichocarpa 3694 AAG|GTACTAATCT...CCGACTTTCACA/ATGATACTGAGT...TGCAG|GGA 0 1 31.92
161300933 GT-AG 0 0.0001537131874205 355 rna-XM_024592400.1 28932372 4 43803370 43803724 Populus trichocarpa 3694 TCG|GTATGAATCT...AATGATTTGACT/AATGATTTGACT...GACAG|AAA 1 1 36.18
161300934 GT-AG 0 3.2367732623667275e-05 75 rna-XM_024592400.1 28932372 5 43803963 43804037 Populus trichocarpa 3694 ATA|GTAAGTGCCT...TACCTCTTAACA/CGTTTTTTCACA...TGCAG|CGG 2 1 40.985
161300935 GT-AG 0 0.0020946560779862 263 rna-XM_024592400.1 28932372 6 43804189 43804451 Populus trichocarpa 3694 CAT|GTAAGTTTCA...ATTTTCTTATTT/TCTGTTATAATA...ATTAG|GCT 0 1 44.034
161300936 GT-AT 0 1.000000099473604e-05 3035 rna-XM_024592400.1 28932372 7 43804687 43807721 Populus trichocarpa 3694 CAG|GTTCTAACTC...ATCGCTTTCGTG/TTCGTGGTGAAG...AATAT|GAA 1 1 48.779
161300937 GT-AG 0 7.691207211284757e-05 326 rna-XM_024592400.1 28932372 8 43809051 43809376 Populus trichocarpa 3694 TAG|GTATGAATTT...TGTATTTTCACT/TGTATTTTCACT...CCAAG|TTG 1 1 75.611
161300938 GT-AG 0 0.0007735702948063 203 rna-XM_024592400.1 28932372 9 43809524 43809726 Populus trichocarpa 3694 ACA|GTACGTAATT...TCGTTCTTATTC/TTCGTTCTTATT...TGCAG|GAA 1 1 78.579
161300939 GT-AG 0 1.000000099473604e-05 262 rna-XM_024592400.1 28932372 10 43809882 43810143 Populus trichocarpa 3694 AAG|GTACTAATCT...CCGACTTTCACA/ATGATACTGAGT...TGCAG|GGA 0 1 81.708
161300940 GT-AG 0 0.0001537131874205 218 rna-XM_024592400.1 28932372 11 43810355 43810572 Populus trichocarpa 3694 TCG|GTATGAATCT...AATGATTTGACT/AATGATTTGACT...GACAG|AAA 1 1 85.968
161300941 GT-AG 0 1.6429787354368584e-05 77 rna-XM_024592400.1 28932372 12 43810811 43810887 Populus trichocarpa 3694 ATA|GTAAGTGTCT...ATTCCCTGAATA/CATTTTTTCACT...TGCAG|TGG 2 1 90.773
161300942 GT-AG 0 4.294680935667163e-05 205 rna-XM_024592400.1 28932372 13 43811039 43811243 Populus trichocarpa 3694 CAT|GTAAGCCATC...TATATCTAAATA/TCTATTCTAATT...ATCAG|GCT 0 1 93.822

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