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

✎ 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
212703687 GT-AG 0 1.000000099473604e-05 4947 rna-gnl|WGS:VZUH|XIPELE_R12726_mrna 38421883 1 271832 276778 Xiphorhynchus elegans 269412 AAG|GTAGGGCTGT...TTATTATTGACT/TTATTATTGACT...CTCAG|GAA 1 1 4.044
212703688 GT-AG 0 1.000000099473604e-05 1021 rna-gnl|WGS:VZUH|XIPELE_R12726_mrna 38421883 2 276853 277873 Xiphorhynchus elegans 269412 CAG|GTCAGTGTAT...GTCCTTTTGATT/TATTTTTTTATG...ATCAG|GGT 0 1 6.066
212703689 GT-AG 0 5.048755806671744e-05 2256 rna-gnl|WGS:VZUH|XIPELE_R12726_mrna 38421883 3 278015 280270 Xiphorhynchus elegans 269412 CCA|GTAAGTCTGC...TATCTATTATCT/ATATCTATTATC...CCTAG|TCA 0 1 9.918
212703690 GT-AG 0 3.77418059696279e-05 15932 rna-gnl|WGS:VZUH|XIPELE_R12726_mrna 38421883 4 280376 296307 Xiphorhynchus elegans 269412 CCA|GTAAGATTTT...TCTTCTTTTTCT/TTATTTCTGATG...GTCAG|CCA 0 1 12.787
212703691 GT-AG 0 1.000000099473604e-05 572 rna-gnl|WGS:VZUH|XIPELE_R12726_mrna 38421883 5 296374 296945 Xiphorhynchus elegans 269412 AGA|GTGAGTATCA...GTATTTGTAATA/GTATTTGTAATA...CACAG|GAA 0 1 14.59
212703692 GT-AG 0 1.000000099473604e-05 946 rna-gnl|WGS:VZUH|XIPELE_R12726_mrna 38421883 6 297039 297984 Xiphorhynchus elegans 269412 AAG|GTAAATCTGG...GTTGTGTTGCTT/GTGTTGCTTACT...CCTAG|GAG 0 1 17.131
212703693 GT-AG 0 0.0001251617841823 1498 rna-gnl|WGS:VZUH|XIPELE_R12726_mrna 38421883 7 298111 299608 Xiphorhynchus elegans 269412 CAG|GTAAACATTT...GTTCTCTTAGAG/TTTTTCTTCATT...TTCAG|CTT 0 1 20.574
212703694 GT-AG 0 0.0004615880041881 1595 rna-gnl|WGS:VZUH|XIPELE_R12726_mrna 38421883 8 299767 301361 Xiphorhynchus elegans 269412 TGG|GTATGGATGC...TTTTTTTTAACT/TTTTTTTTAACT...TGTAG|GAT 2 1 24.891
212703695 GT-AG 0 0.0001185491183167 1351 rna-gnl|WGS:VZUH|XIPELE_R12726_mrna 38421883 9 301579 302929 Xiphorhynchus elegans 269412 AAG|GTACTTTCAA...ACATTTTTACTC/TACATTTTTACT...TACAG|GCT 0 1 30.82
212703696 GT-AG 0 1.000000099473604e-05 1176 rna-gnl|WGS:VZUH|XIPELE_R12726_mrna 38421883 10 303142 304317 Xiphorhynchus elegans 269412 CTG|GTAAAGAAAT...TAATTCTTAACT/ATTTAATTAATT...TTAAG|TTT 2 1 36.612
212703697 GT-AG 0 1.000000099473604e-05 14942 rna-gnl|WGS:VZUH|XIPELE_R12726_mrna 38421883 11 304922 319863 Xiphorhynchus elegans 269412 CCG|GTAAGAGAAA...TTTTCTTTAATT/AAGTTTCTCATC...TGCAG|ATA 0 1 53.115
212703698 GT-AG 0 1.000000099473604e-05 971 rna-gnl|WGS:VZUH|XIPELE_R12726_mrna 38421883 12 321114 322084 Xiphorhynchus elegans 269412 TAG|GTAATGCAGA...TTTTTCTTCATT/TTTTTCTTCATT...TTAAG|GTT 2 1 87.268

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