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)

12 rows where transcript_id = 33469709

✎ 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
187538469 GT-AG 0 0.0001057750834645 2123 rna-XM_002466245.2 33469709 2 4161045 4163167 Sorghum bicolor 4558 CAG|GTCTTGTTTC...GTTATTTTAGCA/TTTGCATTCAGT...TTCAG|GAA 1 1 2.177
187538470 GT-AG 0 1.836034635032613e-05 194 rna-XM_002466245.2 33469709 3 4159404 4159597 Sorghum bicolor 4558 TTG|GTAAATATCC...TTATTATTAATA/TTATTATTAATA...TCCAG|GTA 2 1 33.369
187538471 GT-AG 0 5.40181353453933e-05 134 rna-XM_002466245.2 33469709 4 4157787 4157920 Sorghum bicolor 4558 GAG|GTTCGCTTGT...TGGGATTTAATG/TCTGTTGTCACT...TCCAG|GTA 0 1 65.337
187538472 GT-AG 0 1.000000099473604e-05 108 rna-XM_002466245.2 33469709 5 4157514 4157621 Sorghum bicolor 4558 CAG|GTCAGACATT...ATTTCTTTAGAT/AGATGATTAACT...ACCAG|CTT 0 1 68.894
187538473 GT-AG 0 0.0019571434505919 90 rna-XM_002466245.2 33469709 6 4157231 4157320 Sorghum bicolor 4558 CTG|GTATGTACTT...AACACCTTGATT/CACTTTCTGATC...TGCAG|GTG 1 1 73.055
187538474 GT-AG 0 2.4687995381193857e-05 76 rna-XM_002466245.2 33469709 7 4157043 4157118 Sorghum bicolor 4558 GAA|GTATGACCAT...ATATGCTTATTC/CTTCCACTCATT...TGCAG|GGC 2 1 75.469
187538475 GT-AG 0 1.000000099473604e-05 93 rna-XM_002466245.2 33469709 8 4156802 4156894 Sorghum bicolor 4558 CAG|GTCAGTTGTT...ATACTCTAAACC/AATTGCATAACT...TGCAG|GGT 0 1 78.659
187538476 GT-AG 0 1.000000099473604e-05 92 rna-XM_002466245.2 33469709 9 4156512 4156603 Sorghum bicolor 4558 CAG|GTGCTTACTG...ATTTTGTTACCT/AATTTTGTTACC...CTCAG|GTT 0 1 82.927
187538477 GT-AG 0 0.0003295775492128 100 rna-XM_002466245.2 33469709 10 4156133 4156232 Sorghum bicolor 4558 CAG|GTATGTGTCA...GTGCCCTTGGCT/GCTGGATTTACT...TGCAG|TAT 0 1 88.942
187538478 GT-AG 0 0.0001199888222764 99 rna-XM_002466245.2 33469709 11 4155872 4155970 Sorghum bicolor 4558 AAG|GTAACCACAG...GTAACCATGCCC/CCAATGCTTATG...CACAG|GTG 0 1 92.434
187538479 GT-AG 0 3.9308005092180425e-05 261 rna-XM_002466245.2 33469709 12 4155392 4155652 Sorghum bicolor 4558 CAG|GTAATTTGCC...TGTCTCTTAAAC/ATCCTATTCACA...CGCAG|GGC 0 1 97.155
187558135 GT-AG 0 0.0085251698903286 1694 rna-XM_002466245.2 33469709 1 4163215 4164908 Sorghum bicolor 4558 CTG|GTATATCTTT...ATTTACTTGATT/ATTTACTTGATT...TACAG|GGG   0 1.315

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