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

✎ 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
141263678 GT-AG 0 1.000000099473604e-05 811 rna-XM_023511944.1 25571541 1 19494808 19495618 Otolemur garnettii 30611 AAG|GTGGGTGATG...GGCTCCTCCGCC/CGGAAGTTTACT...GCCAG|GTG 0 1 0.242
141263679 GT-AG 0 1.000000099473604e-05 2097 rna-XM_023511944.1 25571541 2 19491741 19493837 Otolemur garnettii 30611 CGT|GTGAGTCAGA...TTTTTCTTATAT/TTTTTTCTTATA...TTCAG|TAG 1 1 39.387
141263680 GT-AG 0 1.000000099473604e-05 8469 rna-XM_023511944.1 25571541 3 19483105 19491573 Otolemur garnettii 30611 GAG|GTAAGAAGCT...CACTTCTTAACA/AACATGCTTATT...CTTAG|TGT 0 1 46.126
141263681 GT-AG 0 1.000000099473604e-05 3446 rna-XM_023511944.1 25571541 4 19479551 19482996 Otolemur garnettii 30611 CAG|GTAAGAATAA...CATTTCTTTATT/ACTTGTTTCATT...TTTAG|GCT 0 1 50.484
141263682 GT-AG 0 1.000000099473604e-05 1150 rna-XM_023511944.1 25571541 5 19478281 19479430 Otolemur garnettii 30611 GTG|GTGAGGGACT...TTTTCTCTATAG/GTCCTTGTGAAT...TCTAG|GAT 0 1 55.327
141263683 GT-AG 0 0.0092125750171863 5068 rna-XM_023511944.1 25571541 6 19473077 19478144 Otolemur garnettii 30611 CAG|GTATTCAACA...GTTATTTTAATT/GTTATTTTAATT...TATAG|TTC 1 1 60.815
141263684 GT-AG 0 1.000000099473604e-05 5258 rna-XM_023511944.1 25571541 7 19467618 19472875 Otolemur garnettii 30611 AAA|GTAAGTAATA...GATTTCTGAATT/CATGTGTTCATT...CCTAG|CTT 1 1 68.927
141263685 GT-AG 0 1.000000099473604e-05 3404 rna-XM_023511944.1 25571541 8 19464088 19467491 Otolemur garnettii 30611 AAG|GTGAGTTATT...ATTTCCTTTTTT/TATGTGTTCATT...AACAG|CGG 1 1 74.011
141263686 GT-AG 0 0.0011722765987872 5184 rna-XM_023511944.1 25571541 9 19458798 19463981 Otolemur garnettii 30611 GAG|GTATATGTTC...ATTTGTTTAATT/ATTTGTTTAATT...TATAG|GTT 2 1 78.289
141263687 GT-AG 0 1.000000099473604e-05 4554 rna-XM_023511944.1 25571541 10 19454068 19458621 Otolemur garnettii 30611 GAG|GTAAGTATGC...AATTTCCTATTC/GTTAAACTAATT...TATAG|TGA 1 1 85.391
141263688 GT-AG 0 1.696013405370459e-05 3614 rna-XM_023511944.1 25571541 11 19450327 19453940 Otolemur garnettii 30611 AAA|GTAATGTTTT...TAATTGTTAGTT/TTGAGATTGATT...GACAG|GAC 2 1 90.517
141263689 GT-AG 0 1.000000099473604e-05 8679 rna-XM_023511944.1 25571541 12 19441503 19450181 Otolemur garnettii 30611 ATG|GTTGGTGTCC...TTGTATTTAACC/TTGTATTTAACC...TATAG|GAA 0 1 96.368

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