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)

10 rows where transcript_id = 35543751

✎ 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
199805428 GT-AG 0 1.000000099473604e-05 107 rna-gnl|WGS:VXBI|TOXRED_R07226_mrna 35543751 1 65862 65968 Toxostoma redivivum 99882 CTG|GTAATGGATG...TTCTCCTTGCTC/CGCGTGTTAAAA...CACAG|CGC 2 1 2.601
199805429 GT-AG 0 1.3015988216082986e-05 3018 rna-gnl|WGS:VXBI|TOXRED_R07226_mrna 35543751 2 62787 65804 Toxostoma redivivum 99882 CCT|GTAAGTACCG...TTGCCCTTTCCT/GATAACTTCACT...TTCAG|GTG 2 1 5.115
199805430 GT-AG 0 1.000000099473604e-05 6675 rna-gnl|WGS:VXBI|TOXRED_R07226_mrna 35543751 3 55966 62640 Toxostoma redivivum 99882 CAG|GTGAGACTCA...TTATTTTTACTC/ATTATTTTTACT...CTTAG|ATT 1 1 11.552
199805431 GT-AG 0 1.000000099473604e-05 6900 rna-gnl|WGS:VXBI|TOXRED_R07226_mrna 35543751 4 48077 54976 Toxostoma redivivum 99882 AAG|GTAGGACCAT...TACCTTTTGATA/ATTTTCTTCATT...TGTAG|GGT 0 1 55.159
199805432 GT-AG 0 1.000000099473604e-05 679 rna-gnl|WGS:VXBI|TOXRED_R07226_mrna 35543751 5 47317 47995 Toxostoma redivivum 99882 CTG|GTGAGTGTTG...TTCACCTGAGTC/TCCTGCTTCACC...CCCAG|CAC 0 1 58.73
199805433 GT-AG 0 1.000000099473604e-05 6908 rna-gnl|WGS:VXBI|TOXRED_R07226_mrna 35543751 6 40236 47143 Toxostoma redivivum 99882 AGT|GTGAGTGCAG...ATTTACTTAAAC/ATTTTATTTACT...GCCAG|GAA 2 1 66.358
199805434 GT-AG 0 1.000000099473604e-05 1487 rna-gnl|WGS:VXBI|TOXRED_R07226_mrna 35543751 7 38640 40126 Toxostoma redivivum 99882 GAG|GTAAATGTCT...CTTTCCTTATGT/ATTCAGCTTACT...TGCAG|GCA 0 1 71.164
199805435 GT-AG 0 3.721205464055002e-05 995 rna-gnl|WGS:VXBI|TOXRED_R07226_mrna 35543751 8 37509 38503 Toxostoma redivivum 99882 GAG|GTATGGAGTC...GTGCTTTTGATT/ATGTTTCTGATT...CCTAG|TAA 1 1 77.16
199805436 GT-AG 0 1.000000099473604e-05 8959 rna-gnl|WGS:VXBI|TOXRED_R07226_mrna 35543751 9 28457 37415 Toxostoma redivivum 99882 AAT|GTAAGTATTA...TTTGCTTTTTTT/GGGTGTCTAATT...TGTAG|GGG 1 1 81.261
199805437 GT-AG 0 1.000000099473604e-05 682 rna-gnl|WGS:VXBI|TOXRED_R07226_mrna 35543751 10 27677 28358 Toxostoma redivivum 99882 CTG|GTGGGTTTTA...TTTTTTTTTTCT/CCTGTATTCATA...CACAG|CTG 0 1 85.582

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