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

✎ 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
77699662 GT-AG 0 1.000000099473604e-05 3139 rna-XM_013302652.2 14514650 1 5248339 5251477 Falco peregrinus 8954 TAG|GTAAGTAGAA...TTAATCTAAACC/CTAAACCTGACT...GCAAG|GTT 1 1 11.62
77699663 GT-AG 0 1.000000099473604e-05 5337 rna-XM_013302652.2 14514650 2 5242538 5247874 Falco peregrinus 8954 GTG|GTGAGTTTCT...GTCTCCTTATTT/CTTATTTTCACA...TGTAG|GTT 0 1 31.298
77699664 GT-AG 0 1.000000099473604e-05 3203 rna-XM_013302652.2 14514650 3 5239075 5242277 Falco peregrinus 8954 GGC|GTGAGTATCC...TGATCTCTGATG/TTTTGGCTGATC...TACAG|GAT 2 1 42.324
77699665 GT-AG 0 4.658598238044638e-05 5166 rna-XM_013302652.2 14514650 4 5233691 5238856 Falco peregrinus 8954 TGA|GTAAGTCAAC...TTCTTCTTGATT/TTCTTCTTGATT...GCTAG|GTG 1 1 51.569
77699666 GT-AG 0 1.000000099473604e-05 1127 rna-XM_013302652.2 14514650 5 5232361 5233487 Falco peregrinus 8954 CAA|GTAAGTGTAT...TGTTTTTTTCCA/ATTCAGCTCATT...TGCAG|GGG 0 1 60.178
77699667 GT-AG 0 3.784804661072799e-05 1360 rna-XM_013302652.2 14514650 6 5230914 5232273 Falco peregrinus 8954 CGA|GTAAGTCTTT...TTTCTCATAATG/TATTTTCTCATA...TCTAG|TTG 0 1 63.868
77699668 GT-AG 0 0.0009382941279996 2322 rna-XM_013302652.2 14514650 7 5228521 5230842 Falco peregrinus 8954 TAA|GTAAGCATCT...TACACTTTGATT/CCTTTTTTTACA...TGCAG|ATT 2 1 66.879
77699669 GT-AG 0 1.000000099473604e-05 5885 rna-XM_013302652.2 14514650 8 5222474 5228358 Falco peregrinus 8954 ACA|GTGAGTACTG...TAGTATTTAATC/TTCTTTTTTATT...TACAG|GAG 2 1 73.749
77699670 GT-AG 0 1.000000099473604e-05 1984 rna-XM_013302652.2 14514650 9 5220393 5222376 Falco peregrinus 8954 AGG|GTGTGTAAGC...TTAACATTGCAA/GTTATTAACATT...TTCAG|GCA 0 1 77.863
77699671 GT-AG 0 0.0270194235548914 763 rna-XM_013302652.2 14514650 10 5219498 5220260 Falco peregrinus 8954 CCG|GTACCTGTTA...ATTTCTTTCTCA/TTCTTTCTCATA...CACAG|GCT 0 1 83.461
77699672 GT-AG 0 1.000000099473604e-05 4163 rna-XM_013302652.2 14514650 11 5215247 5219409 Falco peregrinus 8954 CAG|GTAATGGAAG...TTTTCCTCAAAA/CTTTTCCTCAAA...TTCAG|ATC 1 1 87.193

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