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)

11 rows where transcript_id = 28932416

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
161301508 GT-AG 0 6.564854844011277e-05 823 rna-XM_006369054.2 28932416 1 13907193 13908015 Populus trichocarpa 3694 CAG|GTAATTTTGG...TTTTTCTAGACC/TTTTTCTAGACC...AATAG|GGT 0 1 3.809
161301509 GT-AG 0 1.000000099473604e-05 103 rna-XM_006369054.2 28932416 2 13907032 13907134 Populus trichocarpa 3694 CTG|GTAAAGCGCT...ATATTCTGAGTT/TATATTCTGAGT...TCCAG|AGC 1 1 5.253
161301510 GT-AG 0 1.000000099473604e-05 122 rna-XM_006369054.2 28932416 3 13906845 13906966 Populus trichocarpa 3694 GAG|GTTAGTCTGA...TTTTTCATACCG/TTGTGGTTAATT...TTTAG|ATT 0 1 6.871
161301511 GT-AG 0 1.903552422773466e-05 449 rna-XM_006369054.2 28932416 4 13906312 13906760 Populus trichocarpa 3694 TCG|GTAAATATCT...CTTTCCTTCCTT/TTTAAACTGACT...TGGAG|GCA 0 1 8.962
161301512 GT-AG 0 1.000000099473604e-05 189 rna-XM_006369054.2 28932416 5 13906042 13906230 Populus trichocarpa 3694 GAG|GTAAGTAATT...CTAATCTCAAAA/AATTTGCTAATC...TGCAG|GTG 0 1 10.978
161301513 GT-AG 0 1.000000099473604e-05 96 rna-XM_006369054.2 28932416 6 13905784 13905879 Populus trichocarpa 3694 ATG|GTAAGCGTGT...ATTTTTGTATTC/TTTGTATTCACT...TGCAG|GAA 0 1 15.011
161301514 GT-AG 0 1.000000099473604e-05 81 rna-XM_006369054.2 28932416 7 13905604 13905684 Populus trichocarpa 3694 AAG|GTAATTTAGA...TGTTTCTCAACC/ATGTTTCTCAAC...TGCAG|CTC 0 1 17.476
161301515 GT-AG 0 1.000000099473604e-05 490 rna-XM_006369054.2 28932416 8 13903771 13904260 Populus trichocarpa 3694 GAG|GTATAAAAAG...TTGTTTTTGCTG/TTGCTGTTCATT...TCCAG|GCA 2 1 50.909
161301516 GT-AG 0 1.4684896923318825e-05 78 rna-XM_006369054.2 28932416 9 13903466 13903543 Populus trichocarpa 3694 AAG|GTTTGTTGTG...TGGCCTCTGACA/TTTTGTGTCATT...TACAG|GGA 1 1 56.56
161301517 GT-AG 0 2.4307570047863032e-05 526 rna-XM_006369054.2 28932416 10 13902785 13903310 Populus trichocarpa 3694 ACT|GTAAGTGTAC...ATTTGCTTATCC/TATTTGCTTATC...TACAG|CAT 0 1 60.418
161301518 GT-AG 0 0.0021672294506278 99 rna-XM_006369054.2 28932416 11 13902647 13902745 Populus trichocarpa 3694 CTG|GTATGTCTTG...TGCATTTTACTT/ATGCATTTTACT...TCCAG|ATG 0 1 61.389

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