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

✎ 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
3821693 GT-AG 0 1.000000099473604e-05 58 rna-gnl|I4U23|003673-T1 720751 1 11421632 11421689 Adineta vaga 104782 CAT|GTAATATAAT...ATTAATTTGATA/ATTAATTTGATA...TTTAG|TGG 1 1 3.129
3821694 GT-AG 0 1.000000099473604e-05 123 rna-gnl|I4U23|003673-T1 720751 2 11421843 11421965 Adineta vaga 104782 CAT|GTAAGATCTC...TTGTTTTTCATT/TTGTTTTTCATT...AAAAG|ATA 1 1 5.116
3821695 GT-AG 0 0.0010891169597884 60 rna-gnl|I4U23|003673-T1 720751 3 11422556 11422615 Adineta vaga 104782 GAA|GTATGAATTT...ATCTTTTTGAAT/ATCTTTTTGAAT...TGTAG|GTA 0 1 12.778
3821696 GT-AG 0 0.0001863922055535 51 rna-gnl|I4U23|003673-T1 720751 4 11423063 11423113 Adineta vaga 104782 AAT|GTAAGTTCTA...AATATCTTATAT/AAATATCTTATA...TTAAG|TCT 0 1 18.582
3821697 GT-AG 0 0.0001397644410384 54 rna-gnl|I4U23|003673-T1 720751 5 11423698 11423751 Adineta vaga 104782 CCA|GTAAGTATTC...TATCACTTATCT/CTATCACTTATC...GATAG|TTT 2 1 26.165
3821698 GT-AG 0 6.227251871780585e-05 59 rna-gnl|I4U23|003673-T1 720751 6 11424999 11425057 Adineta vaga 104782 AAG|GTATTAAAGT...TTTATCTTATTT/ATTTATCTTATT...TATAG|GAA 1 1 42.358
3821699 GT-AG 0 2.087652883408824e-05 56 rna-gnl|I4U23|003673-T1 720751 7 11426252 11426307 Adineta vaga 104782 AGA|GTTCGTTACG...AATTTTGTAATA/GTAATATTAATA...TTTAG|TTG 1 1 57.863
3821700 GT-AG 0 1.933417741126875e-05 313 rna-gnl|I4U23|003673-T1 720751 8 11426854 11427166 Adineta vaga 104782 AAG|GTAATTTCAT...TACTCTTTATAT/ATACTCTTTATA...TAAAG|TTG 1 1 64.953
3821701 GT-AG 0 0.0001479144026303 48 rna-gnl|I4U23|003673-T1 720751 9 11427729 11427776 Adineta vaga 104782 TAT|GTAAGTTATT...ATTCTCTTTTTT/AGATAGATAAAT...TCTAG|AAT 2 1 72.25
3821702 GT-AG 0 0.0228270488850358 55 rna-gnl|I4U23|003673-T1 720751 10 11428238 11428292 Adineta vaga 104782 GAG|GTATTTTAGA...ATCATCTTGATA/ATCATCTTGATA...TTTAG|ATA 1 1 78.237
3821703 GT-AG 0 0.1350758092442494 61 rna-gnl|I4U23|003673-T1 720751 11 11428434 11428494 Adineta vaga 104782 CAA|GTATGTTTTG...TTTCTTTTACTT/GTTTCTTTTACT...TTTAG|ATG 1 1 80.068

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