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

✎ 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
104745022 GT-AG 0 1.000000099473604e-05 881 rna-XM_009952576.1 19533918 3 8585 9465 Leptosomus discolor 188344 CAG|GTAAATTGAT...TTTTTTCTAATT/TTTTTTCTAATT...TTTAG|TTC 2 1 10.712
104745023 GT-AG 0 1.000000099473604e-05 1487 rna-XM_009952576.1 19533918 4 10372 11858 Leptosomus discolor 188344 AAG|GTAAGAGTTA...CTCTTCTTTGCT/TCCAGAGTTACC...CACAG|GTA 2 1 41.135
104745024 GT-AG 0 1.9498637776066424e-05 113 rna-XM_009952576.1 19533918 5 12531 12643 Leptosomus discolor 188344 TAG|GTAAATTATT...TTGTTGTTGATG/TTGTTGTTGATG...TTTAG|ACC 2 1 63.7
104745025 GT-AG 0 0.0004814663967595 2686 rna-XM_009952576.1 19533918 6 12814 15499 Leptosomus discolor 188344 AAG|GTATGTATTG...TCTATTGTAACC/ATTAAACTAATG...AACAG|AGC 1 1 69.409
104745026 GT-AG 0 0.0018730216726462 933 rna-XM_009952576.1 19533918 7 15606 16538 Leptosomus discolor 188344 TAG|GTATATGTTA...CTGCTTTTATCT/TTTTATCTTATA...TTTAG|GAG 2 1 72.968
104745027 GT-AG 0 2.888440742673728e-05 708 rna-XM_009952576.1 19533918 8 16624 17331 Leptosomus discolor 188344 AAA|GTAGGTTCTA...GATGTTTTGTTT/TTTTGTTTCAAA...TACAG|GGA 0 1 75.823
104745028 GT-AG 0 1.6859712604114757e-05 1146 rna-XM_009952576.1 19533918 9 17508 18653 Leptosomus discolor 188344 CAG|GTAAATATTT...ATCTTTTTATTT/TATCTTTTTATT...TTCAG|TAA 2 1 81.733
104745029 GT-AG 0 0.0002493910629036 3587 rna-XM_009952576.1 19533918 10 18835 22421 Leptosomus discolor 188344 TTT|GTAAGTTGCT...GAACTCTTCATT/GAACTCTTCATT...ATCAG|TTT 0 1 87.811
104745030 GT-AG 0 1.000000099473604e-05 1614 rna-XM_009952576.1 19533918 11 22569 24182 Leptosomus discolor 188344 TTG|GTGGGTGTGG...CTAACCTTATTC/GGTGTTCTAACC...TGTAG|CAT 0 1 92.747
104745031 GT-AG 0 1.5339329850036343e-05 148 rna-XM_009952576.1 19533918 12 24393 24540 Leptosomus discolor 188344 AAG|GTAAACAGTT...TGGTCATTAGCA/AGTTTGGTCATT...CACAG|GAG 0 1 99.799
104745032 GT-AG 0 1.000000099473604e-05 1054 rna-XM_009952576.1 19533918 1 5263 6316 Leptosomus discolor 188344 ATG|GTAAGTGGAC...TGCCCTTTATTG/CCATGTCTGACA...TATAG|GGA   0 4.735
104745033 GT-AG 0 1.000000099473604e-05 2070 rna-XM_009952576.1 19533918 2 6391 8460 Leptosomus discolor 188344 GAG|GTAAGATTAA...TTTTTTTTTTCT/TTTCTCGTCACT...GGAAG|GAG   0 7.22

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