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)

10 rows where transcript_id = 18073506

✎ 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
96691864 GT-AG 0 1.000000099473604e-05 1878 rna-gnl|WGS:VZSZ|IBISTR_R15226_mrna 18073506 1 785357 787234 Ibidorhyncha struthersii 425643 CAG|GTCAGTGTCT...CAACTTTTACTT/ACTTGTTTCATT...TTCAG|CCT 0 1 11.517
96691865 GT-AG 0 0.0069254530257559 5776 rna-gnl|WGS:VZSZ|IBISTR_R15226_mrna 18073506 2 787312 793087 Ibidorhyncha struthersii 425643 CAG|GTAAACTTTA...TAGTCCTTAAAA/TTAGTCCTTAAA...TTTAG|TTT 2 1 18.727
96691866 GT-AG 0 1.000000099473604e-05 837 rna-gnl|WGS:VZSZ|IBISTR_R15226_mrna 18073506 3 793161 793997 Ibidorhyncha struthersii 425643 CAG|GTGAAATTCA...TTATCCTTTTTT/TCAAACTTGAAC...CACAG|ATC 0 1 25.562
96691867 GT-AG 0 0.0001638968389012 19705 rna-gnl|WGS:VZSZ|IBISTR_R15226_mrna 18073506 4 794088 813792 Ibidorhyncha struthersii 425643 CCT|GTAAGTACTT...TTTTCCTTTTCT/TTCTCTGTAATT...CACAG|CTT 0 1 33.989
96691868 GT-AG 0 1.000000099473604e-05 4889 rna-gnl|WGS:VZSZ|IBISTR_R15226_mrna 18073506 5 813849 818737 Ibidorhyncha struthersii 425643 GAA|GTGAGTATAC...GTGTGTTTAATT/TTAATTCTCATG...AACAG|TGG 2 1 39.232
96691869 GT-AG 0 0.0001998542656464 613 rna-gnl|WGS:VZSZ|IBISTR_R15226_mrna 18073506 6 818859 819471 Ibidorhyncha struthersii 425643 AAG|GTACACATGT...CCATCTTTTTCT/TTTCAGATTACT...TTCAG|GGT 0 1 50.562
96691870 GT-AG 0 1.9719936575544667e-05 416 rna-gnl|WGS:VZSZ|IBISTR_R15226_mrna 18073506 7 819649 820064 Ibidorhyncha struthersii 425643 GAG|GTATAATGAA...GCCAACTTACTG/TTACGATTGACA...TCCAG|GCC 0 1 67.135
96691871 GT-AG 0 1.000000099473604e-05 1283 rna-gnl|WGS:VZSZ|IBISTR_R15226_mrna 18073506 8 820148 821430 Ibidorhyncha struthersii 425643 AAG|GTAAATGTTG...TTTTCTTTCATT/TTTTCTTTCATT...TCTAG|TTT 2 1 74.906
96691872 GT-AG 0 1.000000099473604e-05 691 rna-gnl|WGS:VZSZ|IBISTR_R15226_mrna 18073506 9 821480 822170 Ibidorhyncha struthersii 425643 GAG|GTAAGTGTTC...CTTTGCTTAACT/CTTTGCTTAACT...TTTAG|TGG 0 1 79.494
96691873 GT-AG 0 1.1593357607942164e-05 542 rna-gnl|WGS:VZSZ|IBISTR_R15226_mrna 18073506 10 822261 822802 Ibidorhyncha struthersii 425643 AAG|GTATTAAAGG...TATTATTTGATT/TATTATTTGATT...TTTAG|GTG 0 1 87.921

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