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

✎ 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
39980165 GT-AG 0 3.722453663195573e-05 540 rna-gnl|WGS:VWPQ|CEUAER_R06470_mrna 7607393 1 867325 867864 Ceuthmochares aereus 1961834 ATT|GTAGGTTGTT...TGTCCATTTATT/TGTCCATTTATT...TGTAG|GAT 0 1 12.168
39980166 GT-AG 0 1.000000099473604e-05 11559 rna-gnl|WGS:VWPQ|CEUAER_R06470_mrna 7607393 2 855727 867285 Ceuthmochares aereus 1961834 CAG|GTAGGATTTA...TAAATTTTGACT/TAAATTTTGACT...CCTAG|GCA 0 1 15.044
39980167 GT-AG 0 7.805730473108619e-05 5386 rna-gnl|WGS:VWPQ|CEUAER_R06470_mrna 7607393 3 850233 855618 Ceuthmochares aereus 1961834 AAG|GTATTATAAA...TCTTGCTTACCA/CTCTTGCTTACC...TACAG|CTC 0 1 23.009
39980168 GT-AG 0 1.000000099473604e-05 1390 rna-gnl|WGS:VWPQ|CEUAER_R06470_mrna 7607393 4 848726 850115 Ceuthmochares aereus 1961834 CAG|GTAATAACTA...CTCTCCTTTGTT/CTTGTATTTAAA...CTCAG|ATT 0 1 31.637
39980169 GT-AG 0 1.000000099473604e-05 1487 rna-gnl|WGS:VWPQ|CEUAER_R06470_mrna 7607393 5 847066 848552 Ceuthmochares aereus 1961834 CAG|GTGAGTGCAT...CAGTACTTGAAG/TTGAAGGTAACA...TTCAG|GTA 2 1 44.395
39980170 GT-AG 0 1.000000099473604e-05 1320 rna-gnl|WGS:VWPQ|CEUAER_R06470_mrna 7607393 6 845673 846992 Ceuthmochares aereus 1961834 AAG|GTAAGATCCT...TTTTTCTAAATA/GTTTTTCTAAAT...CTTAG|AAT 0 1 49.779
39980171 GT-AG 0 0.0001665500352492 1340 rna-gnl|WGS:VWPQ|CEUAER_R06470_mrna 7607393 7 844248 845587 Ceuthmochares aereus 1961834 AAG|GTATTACATA...GTGTTTTTAACA/GTGTTTTTAACA...TATAG|TCC 1 1 56.047
39980172 GT-AG 0 1.000000099473604e-05 15593 rna-gnl|WGS:VWPQ|CEUAER_R06470_mrna 7607393 8 828510 844102 Ceuthmochares aereus 1961834 CAA|GTAGGTAGCA...GTTTTCTTTTTC/TTTCAGCTGACT...CGAAG|AAT 2 1 66.74
39980173 GT-AG 0 1.000000099473604e-05 4984 rna-gnl|WGS:VWPQ|CEUAER_R06470_mrna 7607393 9 823449 828432 Ceuthmochares aereus 1961834 CAG|GTTAGTAAAA...AACACTTTGATT/AACACTTTGATT...TTCAG|GTG 1 1 72.419
39980174 GT-AG 0 1.000000099473604e-05 4730 rna-gnl|WGS:VWPQ|CEUAER_R06470_mrna 7607393 10 818611 823340 Ceuthmochares aereus 1961834 AAG|GTGAGCAGCT...CAGGTCTGATAT/TCAGGTCTGATA...TTGAG|TAT 1 1 80.383

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