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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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
347327 GT-AG 0 0.0008385905155067 112 rna-XM_022223827.1 76524 2 26910 27021 Acanthaster planci 133434 CAA|GTAAGCTAAT...TATTTCTTATTC/TTATTTCTTATT...ATAAG|GCA 0 1 30.529
347328 GT-AG 0 1.000000099473604e-05 173 rna-XM_022223827.1 76524 3 27065 27237 Acanthaster planci 133434 CAA|GTAAGTTCAT...TTCAATTTAGTT/TTGATTCTGATA...TGCAG|CTG 1 1 32.561
347329 GT-AG 0 1.000000099473604e-05 166 rna-XM_022223827.1 76524 4 27586 27751 Acanthaster planci 133434 GAG|GTAAGTAATG...ATTGGCTTAATA/AGTGATTTAATT...TGCAG|GTG 1 1 49.008
347330 GT-AG 0 1.000000099473604e-05 602 rna-XM_022223827.1 76524 5 27811 28412 Acanthaster planci 133434 CAG|GTAAGTATGA...AATGTCTTATGA/CAATGTCTTATG...GTTAG|GGT 0 1 51.796
347331 GT-AG 0 1.000000099473604e-05 705 rna-XM_022223827.1 76524 6 28567 29271 Acanthaster planci 133434 TGG|GTAAGTATCA...TTTTCTTTCTTT/ACTTTCCAAATG...TTCAG|GGA 1 1 59.074
347332 GT-AG 0 2.849891653281404e-05 744 rna-XM_022223827.1 76524 7 29367 30110 Acanthaster planci 133434 AAG|GTACTTAAAC...AATGTCTTAGTG/GAATGTCTTAGT...GATAG|GAT 0 1 63.563
347333 GT-AG 0 0.0022683622791265 778 rna-XM_022223827.1 76524 8 30225 31002 Acanthaster planci 133434 GGG|GTATGCAACA...AATTCCATGATA/CAATTTCTCAAT...GACAG|GGT 0 1 68.951
347334 GT-AG 0 1.000000099473604e-05 123 rna-XM_022223827.1 76524 9 31094 31216 Acanthaster planci 133434 AAA|GTGAGTATAG...TATCTGTTACTT/TTATCTGTTACT...CTTAG|ATT 1 1 73.251
347335 GT-AG 0 0.0001796290557837 187 rna-XM_022223827.1 76524 10 31297 31483 Acanthaster planci 133434 CAG|GTATGTCAAA...TTGACCTTGATA/CTAATGTTGATT...TTTAG|GGT 0 1 77.032
347336 GT-AG 0 1.000000099473604e-05 673 rna-XM_022223827.1 76524 11 31655 32327 Acanthaster planci 133434 AAG|GTGAAATCAG...ACTATTTTATTT/AAAGTTTTCACT...TTTAG|ATT 0 1 85.113
347337 GT-AG 0 1.000000099473604e-05 105 rna-XM_022223827.1 76524 12 32404 32508 Acanthaster planci 133434 TTG|GTTGGTATCA...TTTTCCATGAAG/TGTTTTTCCATG...TTTAG|TCC 1 1 88.705
347338 GT-AG 0 0.0024218106430497 325 rna-XM_022223827.1 76524 13 32622 32946 Acanthaster planci 133434 GAG|GTATGTTACT...TGACCCATGACT/TGTTTTGTGAAA...TACAG|ATT 0 1 94.045
348272 GT-AG 0 1.000000099473604e-05 2120 rna-XM_022223827.1 76524 1 24573 26692 Acanthaster planci 133434 CAG|GTTGGTTCTT...TAATTTTTATAA/TGGATATTGATT...TGCAG|TAT   0 20.605

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