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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
152561444 GT-AG 0 0.0003104960580514 152 rna-XM_008797624.2 27391088 1 21547601 21547752 Phoenix dactylifera 42345 CGG|GTACTGCTTC...TTTTCTTTAATC/TTTTCTTTAATC...GGTAG|GCG 0 1 4.88
152561445 GT-AG 0 0.0106494839823003 1589 rna-XM_008797624.2 27391088 2 21547843 21549431 Phoenix dactylifera 42345 CAG|GTGTCTTATT...TGTTGCTTACTA/TTGTTGCTTACT...TGCAG|ATA 0 1 7.28
152561446 GC-AG 0 1.000000099473604e-05 1313 rna-XM_008797624.2 27391088 3 21549674 21550986 Phoenix dactylifera 42345 AAG|GCATGGAACT...CGATTCTTCACA/TTGTTTCTAACA...TGCAG|CAT 2 1 13.733
152561447 GT-AG 0 0.0002791444978878 196 rna-XM_008797624.2 27391088 4 21551051 21551246 Phoenix dactylifera 42345 CAG|GTAGCTCAGC...AAACTTTTGAAA/AATGACCTGATG...GTTAG|GTC 0 1 15.44
152561448 GT-AG 0 3.998749969200492e-05 153 rna-XM_008797624.2 27391088 5 21551946 21552098 Phoenix dactylifera 42345 GTT|GTAAGTATAT...TGTTGTTTAGTT/TTGTTGTTTAGT...TGCAG|ATA 0 1 34.08
152561449 GT-AG 0 1.000000099473604e-05 198 rna-XM_008797624.2 27391088 6 21552216 21552413 Phoenix dactylifera 42345 GAG|GTCCAGAAAT...TGTTCTTTACCT/GTGTTCTTTACC...GGCAG|ATA 0 1 37.2
152561450 GT-AG 0 1.000000099473604e-05 172 rna-XM_008797624.2 27391088 7 21552546 21552717 Phoenix dactylifera 42345 CTT|GTAAGTGGAA...TGATTTTTAGTT/CATATTTTGATT...TGCAG|ACA 0 1 40.72
152561451 GT-AG 0 0.0627938827520321 2378 rna-XM_008797624.2 27391088 8 21552895 21555272 Phoenix dactylifera 42345 AAG|GTATGCTTCT...GTTTCATTGACC/TATAGTTTCATT...TGCAG|GGT 0 1 45.44
152561452 GT-AG 0 1.000000099473604e-05 81 rna-XM_008797624.2 27391088 9 21555327 21555407 Phoenix dactylifera 42345 GAG|GTTACAATTT...TTTCATTTAACA/ATGAATTTCATT...ACCAG|GCT 0 1 46.88
152561453 GT-AG 0 1.000000099473604e-05 119 rna-XM_008797624.2 27391088 10 21555471 21555589 Phoenix dactylifera 42345 CGG|GTTGGTCCAT...AGTTCTTTACCT/TTTATACTGAAT...TTCAG|GTT 0 1 48.56
152561454 GT-AG 0 1.0281709264184236e-05 122 rna-XM_008797624.2 27391088 11 21556526 21556647 Phoenix dactylifera 42345 CTG|GTAAGTCTGT...TATCTTTTAATT/TATCTTTTAATT...CACAG|GTT 0 1 73.52
152561455 GT-AG 0 0.0130916045844501 846 rna-XM_008797624.2 27391088 12 21556776 21557621 Phoenix dactylifera 42345 AAG|GTATCAATGA...ACTGCTTTTATT/ACTGCTTTTATT...CCCAG|GTA 2 1 76.933
152569656 GT-AG 0 0.0001507086451408 245 rna-XM_008797624.2 27391088 13 21557929 21558173 Phoenix dactylifera 42345 TAG|GTAACGAAGG...AACTTCTTGACC/AACTTCTTGACC...TACAG|TTC   0 85.12

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