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

✎ 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
9478983 GT-AG 0 1.000000099473604e-05 11160 rna-gnl|WGS:WBMU|ANHANH_R13002_mrna 1668812 1 1121026 1132185 Anhinga anhinga 56067 CAG|GTATGAGGTT...ATGGTTTTGAAA/ATGGTTTTGAAA...TATAG|ATG 0 1 42.706
9478984 GT-AG 0 1.000000099473604e-05 1365 rna-gnl|WGS:WBMU|ANHANH_R13002_mrna 1668812 2 1119580 1120944 Anhinga anhinga 56067 GAG|GTAGGTACCT...CCATTTTTATTT/ACCATTTTTATT...AACAG|ACA 0 1 46.286
9478985 GT-AG 0 9.39293460095664e-05 5998 rna-gnl|WGS:WBMU|ANHANH_R13002_mrna 1668812 3 1113545 1119542 Anhinga anhinga 56067 ATG|GTAAGTTTTA...CCTCTTTTGAAA/CCTCTTTTGAAA...GTCAG|TTC 1 1 47.922
9478986 GT-AG 0 1.000000099473604e-05 1334 rna-gnl|WGS:WBMU|ANHANH_R13002_mrna 1668812 4 1112065 1113398 Anhinga anhinga 56067 AAG|GTAGGGGATT...TCTTTTTTTACG/TCTTTTTTTACG...CTCAG|AGG 0 1 54.377
9478987 GT-AG 0 1.000000099473604e-05 1641 rna-gnl|WGS:WBMU|ANHANH_R13002_mrna 1668812 5 1110388 1112028 Anhinga anhinga 56067 GCG|GTGTGTAAAC...TTCTCCTTGTAA/GTCATTCTGAAG...TTTAG|ACT 0 1 55.968
9478988 GT-AG 0 1.000000099473604e-05 7249 rna-gnl|WGS:WBMU|ANHANH_R13002_mrna 1668812 6 1103052 1110300 Anhinga anhinga 56067 CAG|GTAAGTTAGA...ATGACTTTATTT/AATGACTTTATT...TGTAG|GAA 0 1 59.814
9478989 GT-AG 0 1.000000099473604e-05 3471 rna-gnl|WGS:WBMU|ANHANH_R13002_mrna 1668812 7 1099395 1102865 Anhinga anhinga 56067 GAT|GTAAGTAAAT...TTTCTCTGAGCC/CTTTCTCTGAGC...TCTAG|GCA 0 1 68.037
9478990 GT-AG 0 8.78723955591231e-05 1978 rna-gnl|WGS:WBMU|ANHANH_R13002_mrna 1668812 8 1097237 1099214 Anhinga anhinga 56067 GAG|GTAAACTAGT...TTTTCTTTTTCT/TTTCTTTTTAAT...TGCAG|CTC 0 1 75.995
9478991 GT-AG 0 0.0086627947663909 801 rna-gnl|WGS:WBMU|ANHANH_R13002_mrna 1668812 9 1096223 1097023 Anhinga anhinga 56067 AAG|GTACCCCAAA...GAAATATTAACT/GAAATATTAACT...TACAG|GGT 0 1 85.411
9478992 GT-AG 0 0.0059379510898342 6310 rna-gnl|WGS:WBMU|ANHANH_R13002_mrna 1668812 10 1089793 1096102 Anhinga anhinga 56067 ATT|GTAAGTTTCT...TAAACTTTAACA/TAAACTTTAACA...GGCAG|ATT 0 1 90.716
9478993 GT-AG 0 1.000000099473604e-05 1465 rna-gnl|WGS:WBMU|ANHANH_R13002_mrna 1668812 11 1088187 1089651 Anhinga anhinga 56067 GAG|GTAAGAAAAC...GGGGCCTTACAG/ATTCTGTTCATT...GACAG|ATT 0 1 96.95

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