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

✎ 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
130513086 GT-AG 0 1.000000099473604e-05 2385 rna-gnl|WGS:VZSG|NOTPEN_R04386_mrna 23988687 1 2500372 2502756 Nothoprocta pentlandii 2585814 AAG|GTAAGTAAAT...GTTGTTTTAACA/GTTGTTTTAACA...TTCAG|GCT 1 1 5.61
130513087 GT-AG 0 1.000000099473604e-05 675 rna-gnl|WGS:VZSG|NOTPEN_R04386_mrna 23988687 2 2502911 2503585 Nothoprocta pentlandii 2585814 CAG|GTAAATATGG...AAAGCTATGATA/GCTATGATAACT...ACTAG|AAC 2 1 13.998
130513088 GT-AG 0 1.000000099473604e-05 1652 rna-gnl|WGS:VZSG|NOTPEN_R04386_mrna 23988687 3 2503785 2505436 Nothoprocta pentlandii 2585814 AAG|GTAAAGTATA...TTTTTTTTGAAA/TTTTTTTTGAAA...ATCAG|ACA 0 1 24.837
130513089 GT-AG 0 1.000000099473604e-05 1503 rna-gnl|WGS:VZSG|NOTPEN_R04386_mrna 23988687 4 2505588 2507090 Nothoprocta pentlandii 2585814 CTG|GTCAGTGTTT...ATGCTTTTATTG/TTATTGTTAATC...GGCAG|GTT 1 1 33.061
130513090 GT-AG 0 3.2609894982420774e-05 1620 rna-gnl|WGS:VZSG|NOTPEN_R04386_mrna 23988687 5 2507214 2508833 Nothoprocta pentlandii 2585814 GCA|GTAAGTGCCA...ATTGCTTTAACA/ATTGCTTTAACA...TTTAG|GAT 1 1 39.76
130513091 GT-AG 0 1.000000099473604e-05 2209 rna-gnl|WGS:VZSG|NOTPEN_R04386_mrna 23988687 6 2509032 2511240 Nothoprocta pentlandii 2585814 CAG|GTAAAAAGCA...GGTTCTTTAAAA/AGGTTCTTTAAA...TCTAG|GAA 1 1 50.545
130513092 GT-AG 0 1.000000099473604e-05 479 rna-gnl|WGS:VZSG|NOTPEN_R04386_mrna 23988687 7 2511502 2511980 Nothoprocta pentlandii 2585814 TCG|GTAAGCCATA...GTATTTTCATTT/GGTATTTTCATT...TGCAG|GAA 1 1 64.76
130513093 GT-AG 0 0.0907386326095577 1732 rna-gnl|WGS:VZSG|NOTPEN_R04386_mrna 23988687 8 2512081 2513812 Nothoprocta pentlandii 2585814 TAG|GTATGTTTGT...TGTCCTTTAGCT/CTTTAGCTAATT...ACCAG|ATT 2 1 70.207
130513094 GT-AG 0 1.000000099473604e-05 4787 rna-gnl|WGS:VZSG|NOTPEN_R04386_mrna 23988687 9 2513962 2518748 Nothoprocta pentlandii 2585814 CAG|GTAGGTGAGA...ACACCTTTGATT/ACTGCTTTCATA...TTAAG|GTG 1 1 78.322
130513095 GT-AG 0 1.000000099473604e-05 1735 rna-gnl|WGS:VZSG|NOTPEN_R04386_mrna 23988687 10 2518869 2520603 Nothoprocta pentlandii 2585814 CTG|GTAAGAGATT...TTGTTGTTATTT/TTGTTATTTACA...TGCAG|GGG 1 1 84.858
130513096 GT-AG 0 1.9512974591176783e-05 4459 rna-gnl|WGS:VZSG|NOTPEN_R04386_mrna 23988687 11 2520756 2525214 Nothoprocta pentlandii 2585814 AAG|GTAATTTCTG...ATTTCCTTTTTT/TCTTGGCTGATT...TAAAG|GAA 0 1 93.137

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