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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: is_minor, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
83763007 GT-AG 0 0.002048804157782 77 rna-XM_006573848.4 15495818 1 57775091 57775167 Glycine max 3847 TCT|GTAAGTTCCT...AGTTTTTTAATT/AGTTTTTTAATT...CCCAG|GAA 0 1 4.561
83763008 GT-AG 0 1.000000099473604e-05 111 rna-XM_006573848.4 15495818 2 57775789 57775899 Glycine max 3847 CAG|GTTAGCTTAT...AATTCTTTATTG/TTTCTTCTAATC...TTTAG|GTA 0 1 21.725
83763009 GT-AG 0 1.000000099473604e-05 104 rna-XM_006573848.4 15495818 3 57776107 57776210 Glycine max 3847 AAG|GTAATTCTTT...GTGGCCTTGTTA/TAGATTCTCATG...ATCAG|GTG 0 1 27.446
83763010 GT-AG 0 1.000000099473604e-05 106 rna-XM_006573848.4 15495818 4 57776520 57776625 Glycine max 3847 CAG|GTGGTCATAC...TCCTTTTTACCT/TAGGTGCTTATT...TGCAG|GTA 0 1 35.987
83763011 GT-AG 0 0.0036979827622328 174 rna-XM_006573848.4 15495818 5 57776751 57776924 Glycine max 3847 TAT|GTAATCTCTT...TTTCCCTTTGTT/TATTGCTTCATT...CTCAG|GGG 2 1 39.442
83763012 GT-AG 1 98.64343796723304 297 rna-XM_006573848.4 15495818 6 57778074 57778370 Glycine max 3847 TCA|GTATCCTTAT...CTGTCCTTAGAG/CCTGTCCTTAGA...GTCAG|ATA 2 1 71.2
83763013 GT-AG 0 0.1020444115952952 115 rna-XM_006573848.4 15495818 7 57778513 57778627 Glycine max 3847 CAT|GTATTCCTAA...CATTCTTTGGTT/GGTTTACTCATT...TGCAG|AAG 0 1 75.124
83763014 GT-AG 0 4.355737892460956e-05 563 rna-XM_006573848.4 15495818 8 57778788 57779350 Glycine max 3847 TTG|GTACATCCAT...CTCTCTTTGGCA/CATCAACTAATG...GGCAG|GGG 1 1 79.547
83763015 GT-AG 0 3.4812116540164907e-05 1152 rna-XM_006573848.4 15495818 9 57779515 57780666 Glycine max 3847 AAG|GTGTGATTTC...TTTTCTTTGAAT/TTTTCTTTGAAT...GACAG|GAT 0 1 84.08
83763016 GT-AG 0 1.000000099473604e-05 165 rna-XM_006573848.4 15495818 10 57780753 57780917 Glycine max 3847 GAG|GTACTGAAAG...GCATCCTTGTTC/TTTATATTCATA...GACAG|GCA 2 1 86.457
83763017 GT-AG 0 1.000000099473604e-05 2133 rna-XM_006573848.4 15495818 11 57781018 57783150 Glycine max 3847 AAG|GTTTGAGACC...ACTATTTTATAA/AACTATTTTATA...TGTAG|GTG 0 1 89.221
83763018 GT-AG 0 0.0002294488967865 946 rna-XM_006573848.4 15495818 12 57783213 57784158 Glycine max 3847 CAT|GTAAGTTTAC...AGTGTTTTATTT/CAGTGTTTTATT...TTCAG|ATG 2 1 90.934
83763019 GT-AG 0 1.000000099473604e-05 439 rna-XM_006573848.4 15495818 13 57784319 57784757 Glycine max 3847 CAG|GTAAACCAGG...TGGTCCTAAGCT/TTTGAATTTATT...TGCAG|GTG 0 1 95.357

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