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

✎ 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
137151654 GT-AG 0 1.000000099473604e-05 49751 rna-XM_041399286.1 24953054 1 26519425 26569175 Onychostruthus taczanowskii 356909 AAG|GTAAACCAAC...TGTTTTTTGTTT/TTGTTTCTGATA...TCTAG|TTG 1 1 3.089
137151655 GT-AG 0 1.000000099473604e-05 2511 rna-XM_041399286.1 24953054 2 26516852 26519362 Onychostruthus taczanowskii 356909 AAG|GTAAGACTGA...ATTGTTTTAAAA/TGGTGATTTATT...CACAG|TGC 0 1 5.424
137151656 GT-AG 0 0.0002581176538872 1571 rna-XM_041399286.1 24953054 3 26515185 26516755 Onychostruthus taczanowskii 356909 CTG|GTATGTACAG...AGTGTTTTAAAA/AGTGTTTTAAAA...TCTAG|ATG 0 1 9.04
137151657 GT-AG 0 1.000000099473604e-05 2587 rna-XM_041399286.1 24953054 4 26512514 26515100 Onychostruthus taczanowskii 356909 AAT|GTGAGTATTT...GCTGCTTTGAAT/ACTGAATTTATG...TACAG|GTA 0 1 12.203
137151658 GT-AG 0 1.000000099473604e-05 1252 rna-XM_041399286.1 24953054 5 26511169 26512420 Onychostruthus taczanowskii 356909 CAG|GTAATAAAAT...TTCACCTTTTAT/GTGTATTTCACC...TACAG|ATT 0 1 15.706
137151659 GT-AG 0 0.0001492049515023 1746 rna-XM_041399286.1 24953054 6 26509235 26510980 Onychostruthus taczanowskii 356909 AAA|GTAAGCTAAC...GATTTTGTAACA/ATGTATGTAATT...TTCAG|GTA 2 1 22.787
137151660 GT-AG 0 1.000000099473604e-05 970 rna-XM_041399286.1 24953054 7 26508071 26509040 Onychostruthus taczanowskii 356909 AAG|GTAAACACAT...CATTTCAAAGCT/TGCGTGCTCAAG...CGCAG|ATA 1 1 30.094
137151661 GT-AG 0 0.0004738312838688 1245 rna-XM_041399286.1 24953054 8 26506743 26507987 Onychostruthus taczanowskii 356909 GGG|GTATGTGTTT...TGCATCATAACT/TGGTATCTGACC...TACAG|GAA 0 1 33.22
137151662 GT-AG 0 0.0046272570795975 1122 rna-XM_041399286.1 24953054 9 26504307 26505428 Onychostruthus taczanowskii 356909 GAG|GTATTTTATT...CACTTCCTAATT/CACTTCCTAATT...AACAG|GCC 0 1 82.712
137151663 GT-AG 0 0.0079358489543332 1225 rna-XM_041399286.1 24953054 10 26502903 26504127 Onychostruthus taczanowskii 356909 CAG|GTATTCCACA...TCTCTTTTAAAC/TTTGCTTTTACA...TACAG|AAG 2 1 89.454
137151664 GT-AG 0 1.000000099473604e-05 1019 rna-XM_041399286.1 24953054 11 26501820 26502838 Onychostruthus taczanowskii 356909 GAG|GTAAGTGTGT...TGAATTTTATTT/CTGAATTTTATT...TTAAG|GAA 0 1 91.864
137151665 GT-AG 0 1.000000099473604e-05 1493 rna-XM_041399286.1 24953054 12 26500265 26501757 Onychostruthus taczanowskii 356909 CGG|GTGAGTGTTT...TTTTCCTTGCCT/CTCTTACTGAAT...TTCAG|GAA 2 1 94.2

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