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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
129807740 GT-AG 0 1.000000099473604e-05 3002 rna-XM_026686519.1 23897251 2 20346321 20349322 Notechis scutatus 8663 AAG|GTAAGATTAT...ATTTTATTAACT/ATTTTATTAACT...TTTAG|GTC 0 1 59.204
129807741 GT-AG 0 0.0002252109682063 1525 rna-XM_026686519.1 23897251 3 20349584 20351108 Notechis scutatus 8663 AAA|GTAAGCATAA...TTTTCCTGGATA/TTTTGTTTTATG...TACAG|ATA 0 1 66.676
129807742 GT-AG 0 1.000000099473604e-05 2918 rna-XM_026686519.1 23897251 4 20351213 20354130 Notechis scutatus 8663 AAA|GTGAGCAAGT...ATGCTCTTACAC/TTTGGATTGACC...TATAG|GAT 2 1 69.654
129807743 GT-AG 0 0.0119439847740773 709 rna-XM_026686519.1 23897251 5 20354234 20354942 Notechis scutatus 8663 CAG|GTATGTTTGA...TTTTTTTTAATA/TTTTTTTTAATA...TTCAG|GAT 0 1 72.602
129807744 GT-AG 0 0.0191213824370993 1087 rna-XM_026686519.1 23897251 6 20355018 20356104 Notechis scutatus 8663 ACG|GTATGTTGGC...TAATCTTTAATT/TAATCTTTAATT...TCCAG|GTT 0 1 74.749
129807745 GT-AG 0 0.0195890506250407 358 rna-XM_026686519.1 23897251 7 20356192 20356549 Notechis scutatus 8663 CAA|GTATGTTAAT...CCATTCTTATCT/TCCATTCTTATC...TTCAG|ACT 0 1 77.24
129807746 GT-AG 0 1.000000099473604e-05 2644 rna-XM_026686519.1 23897251 8 20356707 20359350 Notechis scutatus 8663 AAG|GTAAGGAAAT...GTTTTTTTAATT/GTTTTTTTAATT...TACAG|CTT 1 1 81.735
129807747 GT-AG 0 1.000000099473604e-05 494 rna-XM_026686519.1 23897251 9 20359400 20359893 Notechis scutatus 8663 TAG|GTAAGTAGTA...TATTTTTTAATT/TATTTTTTAATT...TTTAG|AGG 2 1 83.138
129807748 GT-AG 0 1.000000099473604e-05 1111 rna-XM_026686519.1 23897251 10 20359984 20361094 Notechis scutatus 8663 AAG|GTAAAATAAA...TGCATCTTGATT/TCTTGATTCATC...TGTAG|TAT 2 1 85.714
129807749 GT-AG 0 1.000000099473604e-05 2219 rna-XM_026686519.1 23897251 11 20361271 20363489 Notechis scutatus 8663 AGG|GTAAGAGCTA...TGATGATTAATA/AATATACTGATA...TTCAG|GAA 1 1 90.753
129807750 GT-AG 0 4.844071119264786e-05 2599 rna-XM_026686519.1 23897251 12 20363609 20366207 Notechis scutatus 8663 AAG|GTATAAAGCA...TGCATTTTAACT/TGCATTTTAACT...TCTAG|GAT 0 1 94.16
129807751 GT-AG 0 1.000000099473604e-05 1462 rna-XM_026686519.1 23897251 13 20366315 20367776 Notechis scutatus 8663 AGG|GTGAGCAAAA...ATCTTTTTATTC/TTTTTATTCATT...TGTAG|TTC 2 1 97.223
129811456 GT-AG 0 1.000000099473604e-05 4420 rna-XM_026686519.1 23897251 1 20339522 20343941 Notechis scutatus 8663 CGG|GTAGGTGCGA...TTAGGCTTGAAA/AATTTGTTTACT...TGCAG|GCA   0 4.065

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