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)

13 rows where transcript_id = 7738659

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
40790603 GT-AG 0 1.000000099473604e-05 7059 rna-XM_009883042.1 7738659 1 194028 201086 Charadrius vociferus 50402 CGG|GTGAGTCAGT...CCGGCCCTGACC/CCGGCCCTGACC...TGCAG|ATC 1 1 4.263
40790604 GT-AG 0 1.000000099473604e-05 25624 rna-XM_009883042.1 7738659 2 201371 226994 Charadrius vociferus 50402 CAG|GTAAGGGGCG...GTTGTTTTATTT/TGTTGTTTTATT...GTTAG|CAA 0 1 13.365
40790605 GT-AG 0 1.000000099473604e-05 17678 rna-XM_009883042.1 7738659 3 227019 244696 Charadrius vociferus 50402 AAG|GTCAGTATTT...CTCCCCTCACCT/TCTCCCCTCACC...GCCAG|ACG 0 1 14.135
40790606 GT-AG 0 0.0450994801233234 357 rna-XM_009883042.1 7738659 4 244890 245246 Charadrius vociferus 50402 CAG|GTACCCTCGG...CACATCTCACCG/GCACATCTCACC...TCCAG|GTG 1 1 20.321
40790607 GT-AG 0 1.000000099473604e-05 201 rna-XM_009883042.1 7738659 5 245446 245646 Charadrius vociferus 50402 CCG|GTGAGGGTGT...CTCTCCGGGATG/GGGATGCTCACG...TCCAG|CGA 2 1 26.699
40790608 GT-AG 0 2.855002316980434e-05 1729 rna-XM_009883042.1 7738659 7 246903 248631 Charadrius vociferus 50402 CCC|GTCCGTCAGT...CCCCCCTGAACC/GCCCCCCTGAAC...CTCAG|CTG 0 1 45.096
40790609 GT-AG 0 1.000000099473604e-05 254 rna-XM_009883042.1 7738659 8 248808 249061 Charadrius vociferus 50402 CAA|GTGAGCCGGG...ACACCCCTGTCC/CCCTGTCCCACC...CGCAG|TGA 2 1 50.737
40790610 GT-AG 0 1.000000099473604e-05 1418 rna-XM_009883042.1 7738659 9 249193 250610 Charadrius vociferus 50402 AGG|GTGAGGAGGT...TCCGCCCCATCT/ACCATGGTGACC...CCCAG|CCC 1 1 54.936
40790611 GT-AG 0 1.000000099473604e-05 1045 rna-XM_009883042.1 7738659 10 250759 251803 Charadrius vociferus 50402 CAG|GTGAGCCCCC...AGTGCCTTCGCT/GTGCCGTGCAGC...GGCAG|GCA 2 1 59.679
40790612 GT-AG 0 1.000000099473604e-05 226 rna-XM_009883042.1 7738659 12 252765 252990 Charadrius vociferus 50402 CAG|GTACGGCGTG...GTGCCCTCACAG/CGTGCCCTCACA...TCCAG|ACG 1 1 68.397
40790613 GT-AG 0 1.000000099473604e-05 117 rna-XM_009883042.1 7738659 13 253146 253262 Charadrius vociferus 50402 AAG|GTGGGGAGCG...CACCCCTCACCG/CCACCCCTCACC...TGCAG|AAG 0 1 73.365
40790614 GC-AG 0 1.000000099473604e-05 3550 rna-XM_009883042.1 7738659 14 253493 257042 Charadrius vociferus 50402 CAC|GCGTGGCTGC...ATCCCCGTGAGC/CCCGGGCTGAGC...TCAAG|GTG 2 1 80.737
40790615 GT-AG 0 0.0039413783555012 4785 rna-XM_009883042.1 7738659 15 257518 262302 Charadrius vociferus 50402 CAG|GTTTATTTTC...TCCTCCTTGAAT/TCCTCCTTGAAT...TCTAG|GCC 0 1 95.962

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