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)

11 rows where transcript_id = 720764

✎ 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
3822018 GT-AG 0 1.000000099473604e-05 56 rna-gnl|I4U23|001719-T1 720764 1 5280689 5280744 Adineta vaga 104782 TCG|GTAAATAATC...ATATCTTTTACA/AAAATATTAACT...TTTAG|CCG 1 1 3.734
3822019 GT-AG 0 0.0011027194250398 76 rna-gnl|I4U23|001719-T1 720764 2 5279328 5279403 Adineta vaga 104782 ACC|GTAAGTATCG...ATATCCTTATTT/CATATCCTTATT...CATAG|AAC 2 1 23.159
3822020 GT-AG 0 0.0001146968020139 53 rna-gnl|I4U23|001719-T1 720764 3 5278614 5278666 Adineta vaga 104782 CAA|GTAAGCATTA...TATGTCTTATGA/ATATGTCTTATG...TTTAG|GTA 0 1 33.152
3822021 GT-AG 0 1.000000099473604e-05 54 rna-gnl|I4U23|001719-T1 720764 4 5278208 5278261 Adineta vaga 104782 AAG|GTGAAATTTC...AAAATCTAAACG/CATGAATTGATT...TTCAG|GTA 1 1 38.473
3822022 GT-AG 0 0.0001241794398141 61 rna-gnl|I4U23|001719-T1 720764 5 5277672 5277732 Adineta vaga 104782 AGC|GTAAATAGTT...TCAATTTTAATG/TGGACTTTCATT...TCTAG|TTC 2 1 45.654
3822023 GT-AG 0 1.000000099473604e-05 58 rna-gnl|I4U23|001719-T1 720764 6 5276661 5276718 Adineta vaga 104782 CAG|GTAATTCATC...ATTCTTTTATTC/AATTCTTTTATT...TATAG|AAT 1 1 60.06
3822024 GT-AG 0 0.0005412456449304 57 rna-gnl|I4U23|001719-T1 720764 7 5275564 5275620 Adineta vaga 104782 ACA|GTAAATATTA...TGATTTTTATTT/TTGATTTTTATT...TCTAG|TCA 0 1 75.782
3822025 GT-AG 0 1.000000099473604e-05 154 rna-gnl|I4U23|001719-T1 720764 8 5275358 5275511 Adineta vaga 104782 AAG|GTAATTTCTA...TCGAATTTAATG/AATTTAATGATT...ATTAG|GTA 1 1 76.568
3822026 GT-AG 0 1.000000099473604e-05 47 rna-gnl|I4U23|001719-T1 720764 9 5275134 5275180 Adineta vaga 104782 CAG|GTAGGTCTTC...AAAATCTGAATT/TCTGAATTTATT...TCTAG|TTG 1 1 79.244
3822027 GT-AG 0 1.000000099473604e-05 197 rna-gnl|I4U23|001719-T1 720764 10 5274509 5274705 Adineta vaga 104782 CCG|GTAAGAGATC...TTTTTTTTGAAA/TTTTTTTTGAAA...TCTAG|GTT 0 1 85.714
3822028 GT-AG 0 1.000000099473604e-05 65 rna-gnl|I4U23|001719-T1 720764 11 5273841 5273905 Adineta vaga 104782 CGA|GTAAGATATT...TTCGTTTTGAAC/TTCGTTTTGAAC...TTCAG|AGA 0 1 94.83

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