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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
99589604 TA-AA 0 1.000000099473604e-05 33 rna-XM_041157076.1 18666375 1 5806613 5806645 Juglans microcarpa x juglans regia 2249226 AAC|TATGATGATT...TTATTATTACAA/ATTATTATTACA...GGAAA|TAT 0 1 8.469
99589605 GT-AG 0 2.6581392536207388e-05 450 rna-XM_041157076.1 18666375 2 5806758 5807207 Juglans microcarpa x juglans regia 2249226 AAG|GTACGTATGT...TATTTCTTAAGA/TTAATATTCACT...TGCAG|GAT 1 1 11.509
99589606 GT-AG 0 2.907089857964755e-05 110 rna-XM_041157076.1 18666375 3 5807367 5807476 Juglans microcarpa x juglans regia 2249226 AAG|GTACGTAATT...TATACTTTATTG/TTATACTTTATT...TGTAG|AAT 1 1 15.825
99589607 GC-AG 0 1.000000099473604e-05 100 rna-XM_041157076.1 18666375 4 5807552 5807651 Juglans microcarpa x juglans regia 2249226 AAG|GCAAGTGCAA...ATTTTCTTAATT/ATTTTCTTAATT...TGCAG|GTT 1 1 17.861
99589608 GT-AG 0 1.000000099473604e-05 1733 rna-XM_041157076.1 18666375 5 5807814 5809546 Juglans microcarpa x juglans regia 2249226 AAG|GTAATTATAT...GTTATTTTGTTG/CATTAATTGATA...GCAAG|GTG 1 1 22.258
99589609 GT-AG 0 0.0052778758068199 100 rna-XM_041157076.1 18666375 6 5809706 5809805 Juglans microcarpa x juglans regia 2249226 AAG|GTATTATTGA...GTATTCTTAATA/TGTATTCTTAAT...TACAG|GTT 1 1 26.574
99589610 GT-AG 0 0.0038402452773672 1309 rna-XM_041157076.1 18666375 7 5809956 5811264 Juglans microcarpa x juglans regia 2249226 AAG|GTATGCTGAT...TTTTTCTTCTTT/CTTCTTTTCATA...TACAG|GTT 1 1 30.646
99589611 GT-AG 0 0.0037628498835355 462 rna-XM_041157076.1 18666375 8 5811424 5811885 Juglans microcarpa x juglans regia 2249226 AAG|GTATGTTAAT...CATTTTTTAATT/CATTTTTTAATT...TGCAG|AGC 1 1 34.962
99589612 GT-AG 0 1.000000099473604e-05 715 rna-XM_041157076.1 18666375 9 5811961 5812675 Juglans microcarpa x juglans regia 2249226 AAG|GTAAGAAAGA...TCAATTTTGATG/TCAATTTTGATG...GACAG|AAT 1 1 36.998
99589613 GT-AG 0 0.1130659740346643 2651 rna-XM_041157076.1 18666375 10 5814712 5817362 Juglans microcarpa x juglans regia 2249226 ATG|GTATTCCATA...TGATCCTTACTT/TCCTTACTTATT...CTAAG|GAA 0 1 92.264
99589614 GT-AG 0 0.0027575445793921 118 rna-XM_041157076.1 18666375 11 5817465 5817582 Juglans microcarpa x juglans regia 2249226 ATG|GTCTCTCGGT...GTTCTCATGACC/AATGTTCTCATG...TGTAG|GAG 0 1 95.033

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