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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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
152560438 GT-AG 0 0.0040318859806228 4014 rna-XM_008785184.3 27391001 1 34923040 34927053 Phoenix dactylifera 42345 CAG|GTACTCGCTT...TTTATCTTATCT/GTTTATCTTATC...ATCAG|ATA 2 1 3.596
152560439 GT-AG 0 0.009971587153924 123 rna-XM_008785184.3 27391001 2 34927136 34927258 Phoenix dactylifera 42345 CGG|GTATGTATCT...CTTTTCTTATCC/GCTTTTCTTATC...CTCAG|GAA 0 1 4.987
152560440 GT-AG 0 1.000000099473604e-05 119 rna-XM_008785184.3 27391001 3 34927376 34927494 Phoenix dactylifera 42345 ATG|GTTAGATAAT...TTTTGGTTAACC/AGTCTGCTCACT...TCCAG|TAT 0 1 6.972
152560441 GT-AG 0 6.439021611970733e-05 83 rna-XM_008785184.3 27391001 4 34927671 34927753 Phoenix dactylifera 42345 CGG|GTATGTGACT...GTTACCTTTGCT/TTCATGTTGATT...TTCAG|GGG 2 1 9.958
152560442 GT-AG 0 0.0809295862562647 83 rna-XM_008785184.3 27391001 5 34928661 34928743 Phoenix dactylifera 42345 GAG|GTAACCTTTA...TGCTCTTTTTTT/ATAGTACCGATA...TATAG|GTT 0 1 25.344
152560443 GT-AG 0 0.0014664714800443 102 rna-XM_008785184.3 27391001 6 34928842 34928943 Phoenix dactylifera 42345 ACG|GTAACTTCAC...GTTCTTTTCATT/GTTCTTTTCATT...TTCAG|GAG 2 1 27.006
152560444 GT-AG 0 1.000000099473604e-05 105 rna-XM_008785184.3 27391001 7 34929368 34929472 Phoenix dactylifera 42345 CAG|GTAATATTGG...ATTCCCATAAAA/TCAAAGCTCATA...TGCAG|GGT 0 1 34.198
152560445 GT-AG 0 1.000000099473604e-05 70 rna-XM_008785184.3 27391001 8 34930073 34930142 Phoenix dactylifera 42345 CAG|GTACAAGTAT...TTTTTTTTGATC/TTTTTTTTGATC...TGCAG|GCA 0 1 44.377
152560446 GT-AG 0 0.0001700416402938 102 rna-XM_008785184.3 27391001 9 34930323 34930424 Phoenix dactylifera 42345 GAG|GTATAGTAGG...CAATTTTTAAAA/TCATTGTTCATT...TCCAG|GTG 0 1 47.43
152560447 GT-AG 0 1.000000099473604e-05 333 rna-XM_008785184.3 27391001 10 34930977 34931309 Phoenix dactylifera 42345 CAG|GTAATTTACT...GGTTGCTTGATC/ATCTGTATCACT...TTCAG|GTG 0 1 56.794
152560448 GT-AG 0 0.0001093604433929 245 rna-XM_008785184.3 27391001 11 34931421 34931665 Phoenix dactylifera 42345 GCC|GTAAGTAAAA...ATGTCCTTGATT/ATTTATTTGATA...TCCAG|GTT 0 1 58.677
152560449 GT-AG 0 0.0003816540744739 113 rna-XM_008785184.3 27391001 12 34931785 34931897 Phoenix dactylifera 42345 CAG|GTCTCTGCAG...TTTTCTTTTTCT/TCTGTTCTCATA...TACAG|GGA 2 1 60.696
152560450 GT-AG 0 1.000000099473604e-05 2235 rna-XM_008785184.3 27391001 13 34933513 34935747 Phoenix dactylifera 42345 GAG|GTATGAGCCT...TTTATTTTGAAC/CTAATGCTTATT...TGTAG|GCT 0 1 88.092

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