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

✎ 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
161301385 GT-AG 0 1.000000099473604e-05 240 rna-XM_024593993.1 28932407 1 13130806 13131045 Populus trichocarpa 3694 CAG|GTGAGGCTCT...GTGTACTTATTT/TGTGTACTTATT...TGAAG|GAT 0 1 40.0
161301386 GT-AG 0 1.000000099473604e-05 820 rna-XM_024593993.1 28932407 2 13131370 13132189 Populus trichocarpa 3694 AAG|GTAAATTACA...GGCATTTTGAAT/AAATGACTAACC...TGTAG|GAG 0 1 47.633
161301387 GT-AG 0 0.3397331071237157 83 rna-XM_024593993.1 28932407 3 13132319 13132401 Populus trichocarpa 3694 AGG|GTATCTCATA...GACATTTTATCT/ATTGTATTGACA...ACTAG|GCA 0 1 50.671
161301388 GT-AG 0 1.000000099473604e-05 131 rna-XM_024593993.1 28932407 4 13132525 13132655 Populus trichocarpa 3694 CAG|GTTTTTCGTC...TTCTCTCTCTCT/TCTGTTTGCATG...TACAG|TAC 0 1 53.569
161301389 GT-AG 0 1.000000099473604e-05 480 rna-XM_024593993.1 28932407 5 13132827 13133306 Populus trichocarpa 3694 CAG|GTGAGATAGT...CAGTTTTTATTG/CCAGTTTTTATT...TGCAG|TTT 0 1 57.597
161301390 GT-AG 0 3.779781513099104 83 rna-XM_024593993.1 28932407 6 13133433 13133515 Populus trichocarpa 3694 GAG|GTATCTATTT...GTATCCTGAACC/CTGAACCTTACA...CTCAG|ATT 0 1 60.565
161301391 GT-AG 0 4.137854752389139e-05 309 rna-XM_024593993.1 28932407 7 13133651 13133959 Populus trichocarpa 3694 CAG|GTGCTCTGTT...TCTGACTTGATT/ACTTGATTAATT...GACAG|AGA 0 1 63.746
161301392 GT-AG 0 1.000000099473604e-05 78 rna-XM_024593993.1 28932407 8 13134088 13134165 Populus trichocarpa 3694 TAA|GTAAGGGGAT...GGTGCTTTATAT/CTTTATATAATT...TTTAG|GTA 2 1 66.761
161301393 GT-AG 0 1.000000099473604e-05 86 rna-XM_024593993.1 28932407 9 13134275 13134360 Populus trichocarpa 3694 CAG|GTAATAATTT...TTTTCTGTATTC/TGTATTCTGACC...TTCAG|GGT 0 1 69.329
161301394 GT-AG 0 3.0051758286809423e-05 90 rna-XM_024593993.1 28932407 10 13134673 13134762 Populus trichocarpa 3694 CAG|GTGTGTTATC...GTCTTCTTACTG/CGTCTTCTTACT...GGTAG|TAT 0 1 76.678
161301395 GT-AG 0 1.000000099473604e-05 102 rna-XM_024593993.1 28932407 11 13134919 13135020 Populus trichocarpa 3694 CAG|GTAGATTGAT...CTCTTGTTAACC/CTCTTGTTAACC...TGAAG|GCT 0 1 80.353
161301396 GT-AG 0 1.6450889470256214e-05 406 rna-XM_024593993.1 28932407 12 13135320 13135725 Populus trichocarpa 3694 AAG|GTAATTTTGA...AGTGATTTAATT/ATTTAATTAATA...GATAG|GTA 2 1 87.397

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