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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
3822801 GT-AG 0 0.0285192957734259 91 rna-gnl|I4U23|004186-T1 720816 1 12877502 12877592 Adineta vaga 104782 CTT|GTATATACGT...AATTCATTAACG/GAAGAATTCATT...TGCAG|ATG 1 1 35.911
3822802 GT-AG 0 0.2503331623533306 386 rna-gnl|I4U23|004186-T1 720816 2 12876779 12877164 Adineta vaga 104782 TTT|GTACCATTAT...TATTTTGTAGTA/CCTGCATTCATA...CTTAG|ATT 2 1 42.575
3822803 GT-AG 0 1.000000099473604e-05 1938 rna-gnl|I4U23|004186-T1 720816 3 12874832 12876769 Adineta vaga 104782 AAG|GTTTGAGATA...TGATTTGTAACT/TTGTAACTTACC...TTCAG|TGC 2 1 42.753
3822804 GT-AG 0 1.000000099473604e-05 57 rna-gnl|I4U23|004186-T1 720816 4 12874701 12874757 Adineta vaga 104782 AAG|GTAAGTTTGC...AGAACGTTAATA/CATATTCTAATA...TCTAG|AAC 1 1 44.216
3822805 GT-AG 0 1.000000099473604e-05 1257 rna-gnl|I4U23|004186-T1 720816 5 12873272 12874528 Adineta vaga 104782 AAA|GTTTGAAACC...AGATCATTGATT/TATATATTCAAT...TCAAG|TTT 2 1 47.617
3822806 GT-AG 0 1.000000099473604e-05 59 rna-gnl|I4U23|004186-T1 720816 6 12872795 12872853 Adineta vaga 104782 GCT|GTAAGAATAA...TATACTATAATC/TTTTTATATACT...CGTAG|GTA 0 1 55.883
3822807 GT-AG 0 1.000000099473604e-05 52 rna-gnl|I4U23|004186-T1 720816 7 12872515 12872566 Adineta vaga 104782 ATG|GTTAGTAGCG...GACGTTTTCATT/GACGTTTTCATT...TTTAG|GGT 0 1 60.392
3822808 GT-AG 0 1.000000099473604e-05 57 rna-gnl|I4U23|004186-T1 720816 8 12871746 12871802 Adineta vaga 104782 CAG|GTGAGATTTA...TTTTTTGTGATT/TTTTTTGTGATT...CGAAG|GTA 1 1 74.471
3822809 GT-AG 0 0.0008422625516037 56 rna-gnl|I4U23|004186-T1 720816 9 12871051 12871106 Adineta vaga 104782 GAG|GTAACTAATG...CTATTCTTGTCT/GTTTTTTCAACT...TCTAG|TAC 1 1 87.107
3822810 GT-AG 0 1.000000099473604e-05 56 rna-gnl|I4U23|004186-T1 720816 10 12870808 12870863 Adineta vaga 104782 TTG|GTAGAATGTT...TTTTCTTTCTTT/CTTTCTTTCAAA...TTAAG|GAC 2 1 90.805
3822811 GT-AG 0 0.0021386516133577 59 rna-gnl|I4U23|004186-T1 720816 11 12870642 12870700 Adineta vaga 104782 GAG|GTATGTTTAA...AATTTATTGATT/AATTTATTGATT...ATTAG|GTG 1 1 92.921
3822812 GT-AG 0 1.834505067997701e-05 52 rna-gnl|I4U23|004186-T1 720816 12 12870552 12870603 Adineta vaga 104782 GAG|GTACAATGCT...TTTTTCATATTC/TTTTTTTTCATA...TTTAG|ATA 0 1 93.672

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