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

✎ 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
103972377 GT-AG 0 1.000000099473604e-05 3855 rna-XM_017808499.1 19419617 1 1186692 1190546 Lepidothrix coronata 321398 GAG|GTGAGTTGGT...CTATTTGTAATT/TTGAAACTAATT...TTTAG|GAG 1 1 1.42
103972378 GT-AG 0 0.017268575990917 1042 rna-XM_017808499.1 19419617 2 1190732 1191773 Lepidothrix coronata 321398 GAG|GTATATTATG...ATGTTTTTATTT/AATGTTTTTATT...AAAAG|GAT 0 1 11.925
103972379 GT-AG 0 1.000000099473604e-05 707 rna-XM_017808499.1 19419617 3 1191866 1192572 Lepidothrix coronata 321398 CAC|GTGAGTATGG...TTGTTTTTGTTT/ATAATGTTTATT...CTTAG|CAA 2 1 17.149
103972380 GT-AG 0 1.2213547888173196e-05 515 rna-XM_017808499.1 19419617 4 1192715 1193229 Lepidothrix coronata 321398 GAG|GTAAACTGGA...AATAACGTAATT/TTAATGTTTATG...TTCAG|CTT 0 1 25.213
103972381 GT-AG 0 1.000000099473604e-05 4171 rna-XM_017808499.1 19419617 5 1193378 1197548 Lepidothrix coronata 321398 TTG|GTAAGTGTGT...TTGGCCTTTTTT/TCTTGACTCATA...TTAAG|GTA 1 1 33.617
103972382 GT-AG 0 1.000000099473604e-05 1327 rna-XM_017808499.1 19419617 6 1197843 1199169 Lepidothrix coronata 321398 TAG|GTAAATATAA...GTAGCCTAAATC/TGTTATGTTACG...TGTAG|GAG 1 1 50.312
103972383 GT-AG 0 3.724508608718624e-05 1248 rna-XM_017808499.1 19419617 7 1199333 1200580 Lepidothrix coronata 321398 TAG|GTAATTATTT...TTTTCCTTTGTA/GTAAGAATCACA...TTCAG|AGT 2 1 59.568
103972384 GT-AG 0 0.0008725893898139 373 rna-XM_017808499.1 19419617 8 1200679 1201051 Lepidothrix coronata 321398 AAG|GTACCTCACG...GTTGCCATGGCA/AAGCCACTAACA...TTTAG|ATT 1 1 65.133
103972385 GT-AG 0 1.000000099473604e-05 86 rna-XM_017808499.1 19419617 9 1201139 1201224 Lepidothrix coronata 321398 GAG|GTAAAGAGAC...CTAGTTTTAAAT/CTAGTTTTAAAT...CTCAG|GGA 1 1 70.074
103972386 GT-AG 0 0.0004849326188917 1193 rna-XM_017808499.1 19419617 10 1201334 1202526 Lepidothrix coronata 321398 AAT|GTGTGTTTTT...ATTTACTTACTG/CATTTACTTACT...CTTAG|GAT 2 1 76.263
103972387 GT-AG 0 0.0042890312526847 79 rna-XM_017808499.1 19419617 11 1202610 1202688 Lepidothrix coronata 321398 AAA|GTATGTAGTC...TTAATTTTAATG/ATTATACTTAAT...TTTAG|GTT 1 1 80.977
103972388 GT-AG 0 0.0055401965932737 948 rna-XM_017808499.1 19419617 12 1202736 1203683 Lepidothrix coronata 321398 GAG|GTATGTTTTT...GTACTCTTGTTT/ACCATTTTCATA...CAAAG|GAA 0 1 83.646

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