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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
77699812 GT-AG 0 1.000000099473604e-05 2689 rna-XM_027783608.1 14514663 2 5370356 5373044 Falco peregrinus 8954 GTG|GTAGGAAAAG...GGTTTCTTTCCA/AAACCACTAATT...TGCAG|GGA 0 1 12.146
77699813 GT-AG 0 8.201310482233095e-05 3270 rna-XM_027783608.1 14514663 3 5367016 5370285 Falco peregrinus 8954 CAG|GTAAGTTTAT...TTTTCTTTAATG/TTAATGTTTATC...TGTAG|AGA 1 1 15.749
77699814 GT-AG 0 1.000000099473604e-05 302 rna-XM_027783608.1 14514663 4 5366470 5366771 Falco peregrinus 8954 AAG|GTGACAGTTT...GTTAGTTTAATT/GTTAGTTTAATT...TGCAG|GAG 2 1 28.307
77699815 GT-AG 0 1.000000099473604e-05 763 rna-XM_027783608.1 14514663 5 5365520 5366282 Falco peregrinus 8954 AAG|GTGAGAATGC...TATGAATTAACA/TATGAATTAACA...TTTAG|GAC 0 1 37.931
77699816 GT-AG 0 1.000000099473604e-05 2036 rna-XM_027783608.1 14514663 6 5363321 5365356 Falco peregrinus 8954 AAG|GTAAGCAGGT...TTTTCTTTCTTT/GGTTTTCTGAAA...GTTAG|TGA 1 1 46.32
77699817 GT-AG 0 1.000000099473604e-05 564 rna-XM_027783608.1 14514663 7 5362691 5363254 Falco peregrinus 8954 TTG|GTAAGTAGTT...TAGACTTTAATA/TAACTTCTCACT...TATAG|GCT 1 1 49.717
77699818 GT-AG 0 1.000000099473604e-05 1878 rna-XM_027783608.1 14514663 8 5360692 5362569 Falco peregrinus 8954 TGA|GTAAGTATAT...GTGGTTTTATGG/TGTGGTTTTATG...GATAG|GGA 2 1 55.944
77699819 GT-AG 0 1.000000099473604e-05 299 rna-XM_027783608.1 14514663 9 5360244 5360542 Falco peregrinus 8954 GAG|GTAAGAAATA...ATCTTCTTATTT/AATCTTCTTATT...TGCAG|TTC 1 1 63.613
77699820 GT-AG 0 0.000372190540145 1272 rna-XM_027783608.1 14514663 10 5358828 5360099 Falco peregrinus 8954 AAG|GTATGTAAAT...TTTTTTTTAATA/TTTTTTTTAATA...TTTAG|ATG 1 1 71.024
77699821 GT-AG 0 0.8043744900299304 485 rna-XM_027783608.1 14514663 11 5358181 5358665 Falco peregrinus 8954 AAG|GTATACTTTA...CAAACTTTGATT/CTTTGATTGATC...TACAG|CTG 1 1 79.362
77699822 GT-AG 0 3.1749821781234746 15150 rna-XM_027783608.1 14514663 12 5342705 5357854 Falco peregrinus 8954 AAG|GTATCTTCTT...GTTCTTTTATTA/CTTTTATTAATT...GCCAG|CTG 0 1 96.14
77700332 GT-AG 0 0.0002502918593013 451 rna-XM_027783608.1 14514663 1 5373221 5373671 Falco peregrinus 8954 AAG|GTAATCTGAA...ATTTCTTTAATC/TTTTTTTTTATT...TTCAG|GAC   0 9.676

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