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

✎ 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
168294012 GT-AG 0 1.000000099473604e-05 108 rna-XM_025169017.1 30057390 1 648419 648526 Python bivittatus 176946 CAG|GTGGGAGAAG...AAGACTTAAGTT/CTAAGACTTAAG...GGAAG|GAT 1 1 6.162
168294013 GT-AG 0 1.1282921793148314e-05 835 rna-XM_025169017.1 30057390 2 648618 649452 Python bivittatus 176946 CAG|GTAGTTATTA...TATGTTTTAAGT/TATGTTTTAAGT...TACAG|TAT 2 1 12.535
168294014 GT-AG 0 1.000000099473604e-05 893 rna-XM_025169017.1 30057390 3 649657 650549 Python bivittatus 176946 CAG|GTGGGTGCCC...AAATGTTTGATT/AAATGTTTGATT...CACAG|CTG 2 1 26.821
168294015 GT-AG 0 1.000000099473604e-05 290 rna-XM_025169017.1 30057390 4 650621 650910 Python bivittatus 176946 AAG|GTGAGAAGTG...GGTGGTTTAGTA/GGGTGGTTTAGT...TGTAG|CTG 1 1 31.793
168294016 GT-AG 0 1.066478423845305e-05 4578 rna-XM_025169017.1 30057390 5 651098 655675 Python bivittatus 176946 CTT|GTAAGTGCTG...TTGTCCTTTCTT/GTTATATTTAAA...TTCAG|CCT 2 1 44.888
168294017 GT-AG 0 0.0001111221937815 2179 rna-XM_025169017.1 30057390 6 655772 657950 Python bivittatus 176946 CCA|GTAAGTATTG...TTTTTCTTCTCT/TTCTGCTTCATT...CCTAG|GTT 2 1 51.611
168294018 GT-AG 0 1.592925251203063e-05 2412 rna-XM_025169017.1 30057390 7 658064 660475 Python bivittatus 176946 AAG|GTAAGTTATC...TTCTCCTGAGCT/CCTGAGCTCATG...CCCAG|TGA 1 1 59.524
168294019 GT-AG 0 1.000000099473604e-05 361 rna-XM_025169017.1 30057390 8 660619 660979 Python bivittatus 176946 GAG|GTAAGACTTG...GCTCCTTTAACA/GCTCCTTTAACA...TATAG|GAT 0 1 69.538
168294020 GT-AG 0 1.000000099473604e-05 1002 rna-XM_025169017.1 30057390 9 661052 662053 Python bivittatus 176946 GAG|GTCTGTGGTT...GCATTCCTGACA/AAGTTTTTCACA...TCTAG|GAG 0 1 74.58
168294021 GT-AG 0 1.000000099473604e-05 3126 rna-XM_025169017.1 30057390 10 662223 665348 Python bivittatus 176946 ATG|GTAGAGAGTT...TCCTTCTGATCT/ATCCTTCTGATC...TGCAG|GAA 1 1 86.415
168294022 GT-AG 0 1.000000099473604e-05 134 rna-XM_025169017.1 30057390 11 665396 665529 Python bivittatus 176946 AGG|GTGAGTCTCT...ATCTTCTTGCAT/TGCTCACTCATC...TCTAG|CGA 0 1 89.706
168294023 GT-AG 0 1.000000099473604e-05 579 rna-XM_025169017.1 30057390 12 665612 666190 Python bivittatus 176946 CAG|GTAAGCGAAT...TAGTCCTGAAAT/GGTGTTTTTAAT...TGCAG|CTC 1 1 95.448

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