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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, 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
195653533 GT-AG 0 0.0004796277556801 88 rna-XM_010552913.2 34724132 2 9816874 9816961 Tarenaya hassleriana 28532 AAG|GTATGCGTCT...GGTTTCTGATAA/AGGTTTCTGATA...TGCAG|TTC 0 1 49.725
195653534 GT-AG 0 1.937688887329428e-05 85 rna-XM_010552913.2 34724132 3 9816660 9816744 Tarenaya hassleriana 28532 CGG|GTCTGCGATT...TTTTGTTTACCA/GTTTTGTTTACC...CACAG|GAA 0 1 52.813
195653535 GT-AG 0 2.3471646939635776e-05 72 rna-XM_010552913.2 34724132 4 9816442 9816513 Tarenaya hassleriana 28532 AGT|GTAAGTTGGG...TGAATCTTTTCT/TATAATTTCACT...GTCAG|GCA 2 1 56.308
195653536 GT-AG 0 0.0010036276334236 80 rna-XM_010552913.2 34724132 5 9815841 9815920 Tarenaya hassleriana 28532 CTG|GTATAGTTTC...AAAATCATGATC/ATCGGTTTCACG...TTCAG|AAG 1 1 68.781
195653537 GT-AG 0 0.0013575692717926 90 rna-XM_010552913.2 34724132 6 9815460 9815549 Tarenaya hassleriana 28532 CTG|GTATAGTTTC...AAAATCATGATC/ATCGATTTCATG...CTAAG|AAG 1 1 75.748
195653538 GT-AG 0 1.000000099473604e-05 88 rna-XM_010552913.2 34724132 7 9815241 9815328 Tarenaya hassleriana 28532 AAG|GTTAGAACTT...GTTCTCTTGATT/TTGATTTTCATT...TGCAG|TCC 0 1 78.884
195653539 GT-AG 0 0.0303961673630947 74 rna-XM_010552913.2 34724132 8 9814966 9815039 Tarenaya hassleriana 28532 ATG|GTAACTTTTC...GGGTTTTTACTA/CGGGTTTTTACT...TCCAG|GCA 0 1 83.696
195653540 GT-AG 0 1.000000099473604e-05 132 rna-XM_010552913.2 34724132 9 9814627 9814758 Tarenaya hassleriana 28532 AAG|GTAAAAAAAA...TGTTTCTTTGTG/TTTTTGTTTAAA...TGCAG|TCT 0 1 88.652
195653541 GT-AG 0 1.000000099473604e-05 96 rna-XM_010552913.2 34724132 10 9814383 9814478 Tarenaya hassleriana 28532 TCG|GTAATGTCTC...TTCCCTATAATA/GTTTTTGTGATC...TTAAG|CAC 1 1 92.195
195653542 GT-AG 0 1.000000099473604e-05 77 rna-XM_010552913.2 34724132 11 9814175 9814251 Tarenaya hassleriana 28532 ATG|GTAATACCGA...GCTCTCTTAACC/GCTCTCTTAACC...TTCAG|ATT 0 1 95.332
195653543 GT-AG 0 1.000000099473604e-05 110 rna-XM_010552913.2 34724132 12 9813981 9814090 Tarenaya hassleriana 28532 GAA|GTAAGACAGA...TCTCCCTTGTCT/TTTCTTTTCATG...AGCAG|GCT 0 1 97.343
195662825 GT-AG 0 7.7728227230553e-05 90 rna-XM_010552913.2 34724132 1 9819331 9819420 Tarenaya hassleriana 28532 AAA|GTATGAATGA...CTGTTCTAAAAC/ACTGTTCTAAAA...TGCAG|GAT   0 2.107

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