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

✎ 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
82387724 GT-AG 0 1.000000099473604e-05 6080 rna-XM_033959513.1 15214383 1 254746473 254752552 Geotrypetes seraphini 260995 CAG|GTAAGGGGCA...TTCTACTTAATA/AGATATTTAATT...TTTAG|AGT 2 1 4.882
82387725 GT-AG 0 1.000000099473604e-05 2477 rna-XM_033959513.1 15214383 2 254743857 254746333 Geotrypetes seraphini 260995 CAG|GTAAGTAGAA...ATGGTCTAACTC/CATGGTCTAACT...TGCAG|ATT 0 1 7.323
82387726 GT-AG 0 1.000000099473604e-05 2855 rna-XM_033959513.1 15214383 3 254740285 254743139 Geotrypetes seraphini 260995 CAA|GTAAGTAGGT...GAAAGTTTAATA/TAATAACTAATT...TACAG|GTG 0 1 19.916
82387727 GT-AG 0 1.000000099473604e-05 5937 rna-XM_033959513.1 15214383 4 254733943 254739879 Geotrypetes seraphini 260995 CAG|GTAAACCATT...TTGATTTTATAT/ATTGATTTTATA...TTTAG|GAA 0 1 27.028
82387728 GT-AG 0 0.0546164949624818 5605 rna-XM_033959513.1 15214383 5 254728281 254733885 Geotrypetes seraphini 260995 ATG|GTATGTTTCA...TTTTCCCTAATA/AATAATTTTATT...TTCAG|AAA 0 1 28.03
82387729 GT-AG 0 1.000000099473604e-05 1204 rna-XM_033959513.1 15214383 6 254727005 254728208 Geotrypetes seraphini 260995 CAG|GTAAAAGTAC...TCTGTTTTAGTG/TTCTGTTTTAGT...TGGAG|AAC 0 1 29.294
82387730 GT-AG 0 4.626091362869576e-05 14719 rna-XM_033959513.1 15214383 7 254712153 254726871 Geotrypetes seraphini 260995 CAG|GTATTAATTT...ATATATTTATAT/TATATATTTATA...AACAG|AGA 1 1 31.63
82387731 GT-AG 0 1.000000099473604e-05 5822 rna-XM_033959513.1 15214383 8 254706191 254712012 Geotrypetes seraphini 260995 CAG|GTAGGAGACT...TTTTCTTTATTA/ATTTTCTTTATT...CCCAG|GTC 0 1 34.089
82387732 GT-AG 0 9.087154042328184e-05 1751 rna-XM_033959513.1 15214383 9 254701677 254703427 Geotrypetes seraphini 260995 CAG|GTACCAGATT...TATTTCTTCTCA/TTTCTTCTCATT...TGCAG|TTC 0 1 82.613
82387733 GT-AG 0 6.099002627902507e-05 22496 rna-XM_033959513.1 15214383 10 254679004 254701499 Geotrypetes seraphini 260995 AAG|GTACAGCATA...TATTCCTTATTG/ATATTCCTTATT...CTAAG|ATA 0 1 85.722
82387734 GT-AG 0 0.001485422291734 36839 rna-XM_033959513.1 15214383 11 254641798 254678636 Geotrypetes seraphini 260995 CAG|GTATGTTTAA...TCCTCCTTTTTC/TTTTTGCTAATA...TCCAG|AGC 1 1 92.167
82387735 GT-AG 0 0.0099403160052395 2826 rna-XM_033959513.1 15214383 12 254638841 254641666 Geotrypetes seraphini 260995 AGG|GTATGCATAC...ATATCTTCGATT/GACTGGCTCACG...TTTAG|ATA 0 1 94.468
82387736 GT-AG 0 0.0034523557857664 6023 rna-XM_033959513.1 15214383 13 254632764 254638786 Geotrypetes seraphini 260995 AAG|GTAACTTGAG...GTCTTTTTAAAA/GTCTTTTTAAAA...TCCAG|ACT 0 1 95.416

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