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

✎ 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
152561458 GT-AG 0 0.0002810403519345 129 rna-XM_039126063.1 27391090 1 10076068 10076196 Phoenix dactylifera 42345 GAG|GTATTATGAT...GTGGTTTTAATG/GTGGTTTTAATG...TGTAG|CCG 0 1 2.383
152561459 GT-AG 0 6.760110866857131e-05 789 rna-XM_039126063.1 27391090 2 10075083 10075871 Phoenix dactylifera 42345 AGG|GTCTGTTGCT...AAGATTTTAAAA/CTTCTATTCAAT...TGTAG|GGA 1 1 8.611
152561460 GT-AG 0 0.038887517011339 101 rna-XM_039126063.1 27391090 3 10074755 10074855 Phoenix dactylifera 42345 CCA|GTAACCTAAA...AGTGTTCTAATG/AGTGTTCTAATG...TTCAG|GTT 0 1 15.825
152561461 GT-AG 0 1.000000099473604e-05 75 rna-XM_039126063.1 27391090 4 10074583 10074657 Phoenix dactylifera 42345 CTG|GTGGGTGTTG...GATAACTTAACC/GATAACTTAACC...AGCAG|GGA 1 1 18.907
152561462 GT-AG 0 1.000000099473604e-05 89 rna-XM_039126063.1 27391090 5 10074379 10074467 Phoenix dactylifera 42345 CAT|GTAAATCTCC...CTCAAATTAAAA/CTCAAATTAAAA...TGCAG|GAT 2 1 22.561
152561463 GT-AG 0 2.1619414880493087e-05 73 rna-XM_039126063.1 27391090 6 10074039 10074111 Phoenix dactylifera 42345 CAG|GTGACCACAT...TCTTACTTGAAC/CACATTGTTATT...TGCAG|ATA 2 1 31.045
152561464 GT-AG 0 1.000000099473604e-05 366 rna-XM_039126063.1 27391090 7 10073327 10073692 Phoenix dactylifera 42345 AAG|GTTGATTAAA...TATTTTTTGCTC/TAACATTTCAAT...AGCAG|AGA 0 1 42.04
152561465 GT-AG 0 1.541198513196521e-05 266 rna-XM_039126063.1 27391090 8 10072797 10073062 Phoenix dactylifera 42345 CTG|GTATGATAAG...GACTCTATAGTT/ACTCTGCTAATA...TGTAG|GTC 0 1 50.429
152561466 GT-AG 0 1.000000099473604e-05 143 rna-XM_039126063.1 27391090 9 10072441 10072583 Phoenix dactylifera 42345 GAT|GTAAGAAGTC...TGATTATTGTCT/CTGATGATTATT...TGCAG|ATA 0 1 57.197
152561467 GT-AG 0 1.000000099473604e-05 138 rna-XM_039126063.1 27391090 10 10072095 10072232 Phoenix dactylifera 42345 GAG|GTAGGCCAAT...ATTTCATTACTG/AAGCATTTCATT...ATTAG|GGC 1 1 63.807
152561468 GT-AG 0 2.591151837259585e-05 350 rna-XM_039126063.1 27391090 11 10071545 10071894 Phoenix dactylifera 42345 GAG|GTAACAAATA...GACTTCTTGTTT/TTCTTGTTTATA...TGCAG|CTG 0 1 70.162
152561469 GT-AG 0 1.000000099473604e-05 101 rna-XM_039126063.1 27391090 12 10071090 10071190 Phoenix dactylifera 42345 ACG|GTTCGCATCT...TTCATGGTAACT/TCTCTGCTAATT...TCCAG|ATT 0 1 81.411

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