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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
78945470 GT-AG 0 0.0001465221543889 1318 rna-XM_011466121.1 14698696 2 11359994 11361311 Fragaria vesca 57918 AAG|GTTCATTTCT...TAGTTTTTAATG/GTTTGTCTAACT...TTCAG|TGA 1 1 16.04
78945471 GT-AG 0 0.000156926861527 327 rna-XM_011466121.1 14698696 3 11358863 11359189 Fragaria vesca 57918 AAG|GTAAACTCTT...TATTTTGTATTT/TGTATACTCAGA...GATAG|ATA 1 1 31.319
78945472 GT-AG 0 0.0007324189290469 267 rna-XM_011466121.1 14698696 4 11358237 11358503 Fragaria vesca 57918 AAG|GTACTTTATT...GCAACTTTGAAT/GTAGTAATAACT...TGCAG|ATA 0 1 38.141
78945473 GT-AG 0 0.0034814935690968 159 rna-XM_011466121.1 14698696 5 11357719 11357877 Fragaria vesca 57918 AAG|GTATGCAGGC...AAATCTTTATTA/TCTTTATTAAAC...ATCAG|GGA 2 1 44.964
78945474 GT-AG 0 0.0001428695025847 116 rna-XM_011466121.1 14698696 6 11357394 11357509 Fragaria vesca 57918 CTG|GTTCCAATCT...CACATTTTAGTT/CCAAGACTCACA...TGCAG|ATC 1 1 48.936
78945475 GT-AG 0 1.000000099473604e-05 770 rna-XM_011466121.1 14698696 7 11355394 11356163 Fragaria vesca 57918 AAG|GTTGGTGTGC...TTATTTTTGATT/TTATTTTTGATT...TTTAG|GGA 1 1 72.311
78945476 GT-AG 0 0.0004413039181171 386 rna-XM_011466121.1 14698696 8 11354673 11355058 Fragaria vesca 57918 AAG|GTACTGTTTT...CAATCTTTGAAG/TTGAAGCTAATT...CACAG|TCA 0 1 78.677
78945477 GT-AG 0 2.276090719927441e-05 108 rna-XM_011466121.1 14698696 9 11354429 11354536 Fragaria vesca 57918 GAA|GTATGAAACC...GAAATTATAACA/TTGCATTTCAAT...TGAAG|GGA 1 1 81.262
78945478 GT-AG 0 1.000000099473604e-05 234 rna-XM_011466121.1 14698696 10 11353995 11354228 Fragaria vesca 57918 GAG|GTTAGTTCTT...ATGGCTTTAATT/TTGGACCTCATT...TGCAG|AGT 0 1 85.063
78945479 GT-AG 0 3.3672956271051635e-05 82 rna-XM_011466121.1 14698696 11 11353840 11353921 Fragaria vesca 57918 AAA|GTATGAAACC...ATTTTCTTTCCT/TCTTTCCTCATT...TCTAG|AAT 1 1 86.45
78945480 GT-AG 0 1.000000099473604e-05 215 rna-XM_011466121.1 14698696 12 11353461 11353675 Fragaria vesca 57918 GGG|GTTAGTTCTT...TGTATTTCAACT/TTGTATTTCAAC...TGCAG|AAT 0 1 89.567
78945481 GT-AG 0 1.000000099473604e-05 167 rna-XM_011466121.1 14698696 13 11353176 11353342 Fragaria vesca 57918 CAG|GTAATGAACC...TGCACCATAAAT/CTATGTCTGACT...AACAG|GTC 1 1 91.809
78956556 GT-AG 0 6.26516333647967e-05 140 rna-XM_011466121.1 14698696 1 11361864 11362003 Fragaria vesca 57918 CAG|GTAATCTATA...TACATTTTACAC/AAAAATCTGACT...TGCAG|ACG   0 6.1

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