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

✎ 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
130513577 GT-AG 0 1.000000099473604e-05 1642 rna-gnl|WGS:VZSG|NOTPEN_R04509_mrna 23988746 1 5225352 5226993 Nothoprocta pentlandii 2585814 GTG|GTAAGTACCA...ATTTATTTATTT/TATTTATTTATT...AAAAG|GTG 2 1 11.97
130513578 GT-AG 0 7.195006688040741e-05 723 rna-gnl|WGS:VZSG|NOTPEN_R04509_mrna 23988746 2 5224571 5225293 Nothoprocta pentlandii 2585814 AAA|GTAAGTTTAA...TTTGTCTTACAC/TCTATTTTTACT...TCCAG|GGT 0 1 16.364
130513579 GT-AG 0 1.084013234555926e-05 466 rna-gnl|WGS:VZSG|NOTPEN_R04509_mrna 23988746 3 5223978 5224443 Nothoprocta pentlandii 2585814 AGG|GTAAATGTGG...GATGCTTTAATT/TAATTGTTCATT...TGCAG|GTG 1 1 25.985
130513580 GT-AG 0 0.0124061070956781 1244 rna-gnl|WGS:VZSG|NOTPEN_R04509_mrna 23988746 4 5222627 5223870 Nothoprocta pentlandii 2585814 CAG|GTATTTATCC...TATTTCTTATTT/TTATTTCTTATT...TCCAG|AGC 0 1 34.091
130513581 GT-AG 0 0.0079963220922885 448 rna-gnl|WGS:VZSG|NOTPEN_R04509_mrna 23988746 5 5222045 5222492 Nothoprocta pentlandii 2585814 AAA|GTAACTAAGC...CTGTTTTTAACT/CTGTTTTTAACT...TTCAG|TCT 2 1 44.242
130513582 GT-AG 0 1.000000099473604e-05 993 rna-gnl|WGS:VZSG|NOTPEN_R04509_mrna 23988746 6 5220937 5221929 Nothoprocta pentlandii 2585814 GGG|GTGAGTGTGA...ATGATTTTAACT/ATGATTTTAACT...TGCAG|ATT 0 1 52.955
130513583 GT-AG 0 1.000000099473604e-05 859 rna-gnl|WGS:VZSG|NOTPEN_R04509_mrna 23988746 7 5219937 5220795 Nothoprocta pentlandii 2585814 GAG|GTACGTGGAC...CCTGCTTTTTCC/CTGTCACTGACT...TCCAG|ATT 0 1 63.636
130513584 GT-AG 0 1.000000099473604e-05 93 rna-gnl|WGS:VZSG|NOTPEN_R04509_mrna 23988746 8 5219759 5219851 Nothoprocta pentlandii 2585814 CAG|GTAGAATTCA...TGCTTCATAATT/TTGTGCTTCATA...AACAG|GAG 1 1 70.076
130513585 GT-AG 0 1.000000099473604e-05 876 rna-gnl|WGS:VZSG|NOTPEN_R04509_mrna 23988746 9 5218810 5219685 Nothoprocta pentlandii 2585814 GGG|GTAAGTGTCA...CTGACTTTACTG/ACTTTACTGACT...CCAAG|ATG 2 1 75.606
130513586 GT-AG 0 1.000000099473604e-05 1453 rna-gnl|WGS:VZSG|NOTPEN_R04509_mrna 23988746 10 5217198 5218650 Nothoprocta pentlandii 2585814 CAG|GTAAAGTGTT...AATTCTTTAAAC/CTCCTTTTCACT...CTCAG|GGA 2 1 87.652
130513587 GT-AG 0 1.000000099473604e-05 793 rna-gnl|WGS:VZSG|NOTPEN_R04509_mrna 23988746 11 5216308 5217100 Nothoprocta pentlandii 2585814 GAG|GTAAGAGATG...AAACTCTTGATT/TAAAATTTTATC...CGCAG|CTT 0 1 95.0

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