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

✎ 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
161300249 GT-AG 0 0.0199453443405635 101 rna-XM_024582116.1 28932341 1 44873807 44873907 Populus trichocarpa 3694 ACG|GTATGCAGTA...TTTTTTTTATAT/ATTTTTTTTATA...CGCAG|TTG 1 1 0.434
161300250 GT-AG 0 1.000000099473604e-05 115 rna-XM_024582116.1 28932341 2 44875049 44875163 Populus trichocarpa 3694 TTG|GTCAGATTTC...CTTTTCTTTTCC/TTCTTTTCCATT...AGCAG|GTT 2 1 14.995
161300251 GT-AG 0 0.0045796194867136 719 rna-XM_024582116.1 28932341 3 44875903 44876621 Populus trichocarpa 3694 CTT|GTAAGTTTCA...CTTACCTTAGCT/ATCATTCTTACC...TGCAG|CTG 0 1 24.426
161300252 GT-AG 0 0.0003412734187967 1197 rna-XM_024582116.1 28932341 4 44877118 44878314 Populus trichocarpa 3694 AAG|GTAACTACTA...ACAGTTTTATTG/ATTTTGTTTACA...TGCAG|ATG 1 1 30.755
161300253 GT-AG 0 1.000000099473604e-05 74 rna-XM_024582116.1 28932341 5 44878467 44878540 Populus trichocarpa 3694 CAG|GTAAGCATTT...TTGTGTTTCATG/TTGTGTTTCATG...TACAG|GTA 0 1 32.695
161300254 GT-AG 0 9.362574546166231e-05 114 rna-XM_024582116.1 28932341 6 44881952 44882065 Populus trichocarpa 3694 GAG|GTATGATCAA...CTGGCCATGACA/AACTATTTGATT...TGCAG|AGA 0 1 76.225
161300255 GT-AG 0 1.000000099473604e-05 1223 rna-XM_024582116.1 28932341 7 44882279 44883501 Populus trichocarpa 3694 GAG|GTAATACTCT...CATTTTTTATTT/CCATTTTTTATT...CACAG|AAC 0 1 78.943
161300256 GT-AG 0 0.0004908895169503 156 rna-XM_024582116.1 28932341 8 44883706 44883861 Populus trichocarpa 3694 AAG|GTATTGTCTT...TTGCTCTTACAA/ATCCTTCTCACT...TGCAG|AGC 0 1 81.547
161300257 GT-AG 0 6.862737840361331e-05 100 rna-XM_024582116.1 28932341 9 44884066 44884165 Populus trichocarpa 3694 GAG|GTAAAGTTTG...TTTTTCTTATTT/TTTTTTCTTATT...TGCAG|ATA 0 1 84.15
161300258 GT-AG 0 1.000000099473604e-05 565 rna-XM_024582116.1 28932341 10 44884325 44884889 Populus trichocarpa 3694 GAG|GTAGTTGCTA...TTTGTTTTAGTG/CTTTGTTTTAGT...TTTAG|GTC 0 1 86.179
161300259 GT-AG 0 0.0587500730835936 361 rna-XM_024582116.1 28932341 11 44885241 44885601 Populus trichocarpa 3694 ATG|GTCTCTCTCT...GGTCTTTTAAAT/CTTTGTTTGATA...TACAG|AAT 0 1 90.658
161300260 GT-AG 0 0.000395445784261 158 rna-XM_024582116.1 28932341 12 44886038 44886195 Populus trichocarpa 3694 CAG|GTATGGTACT...GTTTCATTAATT/GATAGTTTCATT...AGCAG|ATT 1 1 96.223
161300261 GT-AG 0 1.000000099473604e-05 137 rna-XM_024582116.1 28932341 13 44886281 44886417 Populus trichocarpa 3694 ATG|GTAATATATT...TCAATTTAAACT/TTTAAACTAAAT...TGCAG|GTC 2 1 97.307

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