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

✎ 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
77699782 GT-AG 0 6.20049739098468e-05 1748 rna-XM_027796940.1 14514660 1 10515854 10517601 Falco peregrinus 8954 GTA|GTAAGTTACC...TTCTTTCTAGCT/TTTTTCGTTATG...TACAG|AAA 0 1 8.086
77699783 GT-AG 0 1.000000099473604e-05 631 rna-XM_027796940.1 14514660 2 10515175 10515805 Falco peregrinus 8954 GTG|GTAAGAAGGC...TGTTTCTGAAAA/CTGTTTCTGAAA...TTTAG|ACT 0 1 10.726
77699784 GT-AG 0 2.2220709003248856e-05 2016 rna-XM_027796940.1 14514660 3 10513094 10515109 Falco peregrinus 8954 AAG|GTCTGTATTT...TGTAGCTTAATG/ACAGATTTCATA...GACAG|GTT 2 1 14.301
77699785 GT-AG 0 0.0003299417787522 2009 rna-XM_027796940.1 14514660 4 10511023 10513031 Falco peregrinus 8954 AAG|GTATATGTAT...GCTCTCTAAACT/CTGTTTCTGATA...TGTAG|ATA 1 1 17.712
77699786 GT-AG 0 1.000000099473604e-05 5197 rna-XM_027796940.1 14514660 5 10505717 10510913 Falco peregrinus 8954 AAT|GTGAGTAAGA...TTACTCTTAATG/TTACTCTTAATG...CCCAG|GGA 2 1 23.707
77699787 GT-AG 0 1.000000099473604e-05 2877 rna-XM_027796940.1 14514660 6 10502413 10505289 Falco peregrinus 8954 AAG|GTAAGGGAAA...AGTCTTTTAAAT/TGCTATTTTATT...TGGAG|GCT 0 1 47.195
77699788 GT-AG 0 1.000000099473604e-05 1738 rna-XM_027796940.1 14514660 7 10500512 10502249 Falco peregrinus 8954 AAG|GTGACTAGTT...ACAGTTTTAAAG/AAAGTACTGAAA...TTAAG|GTT 1 1 56.161
77699789 GT-AG 0 1.000000099473604e-05 2557 rna-XM_027796940.1 14514660 8 10497770 10500326 Falco peregrinus 8954 AAG|GTAATGTAAA...CTTTTTTTACCC/GCTTTTTTTACC...TTTAG|GAC 0 1 66.337
77699790 GT-AG 0 0.0001660489085299 1122 rna-XM_027796940.1 14514660 9 10496518 10497639 Falco peregrinus 8954 GAG|GTATTGCCTG...ACTTTTTTAAAC/CCTGATTTGACT...AACAG|GTT 1 1 73.487
77699791 GT-AG 0 1.000000099473604e-05 568 rna-XM_027796940.1 14514660 10 10495806 10496373 Falco peregrinus 8954 CAG|GTAAGTGTAA...TACTCTGTGATT/TACTCTGTGATT...AACAG|GTG 1 1 81.408
77699792 GT-AG 0 1.000000099473604e-05 6438 rna-XM_027796940.1 14514660 11 10489245 10495682 Falco peregrinus 8954 CAG|GTAAGTATTT...GTTCTCTTGCCT/TCTTGCCTGATA...ATTAG|GTT 1 1 88.174

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