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

✎ 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
127495175 GT-AG 0 1.9326156013508045e-05 164896 rna-XM_024740056.1 23404111 1 610185 775080 Neophocaena asiaeorientalis 189058 GTG|GTAGGTGTTG...TTTTTCTTTGCA/ACATGACTAATT...GTCAG|TCA 2 1 2.923
127495176 GT-AG 0 7.620276034993278e-05 8685 rna-XM_024740056.1 23404111 2 775202 783886 Neophocaena asiaeorientalis 189058 AAG|GTAGCTGAAT...ATCTTCTTGTTA/AACCTATTCATT...TTTAG|ACA 0 1 10.448
127495177 GT-AG 0 1.000000099473604e-05 123661 rna-XM_024740056.1 23404111 3 784748 908408 Neophocaena asiaeorientalis 189058 GAA|GTAAGTAATT...ATTTTCTTTTTT/TTTTTGTTTATT...TTTAG|GTG 0 1 63.993
127495178 GT-AG 0 1.000000099473604e-05 31574 rna-XM_024740056.1 23404111 4 908454 940027 Neophocaena asiaeorientalis 189058 CGG|GTGAGTTTAA...GTTGCTTTGTTT/ATTTTTCGAAGT...ATCAG|GAG 0 1 66.791
127495179 GT-AG 0 1.000000099473604e-05 5391 rna-XM_024740056.1 23404111 5 940115 945505 Neophocaena asiaeorientalis 189058 CAG|GTCAGTTATC...TATCATTTAACT/TATCATTTAACT...TATAG|GAA 0 1 72.201
127495180 GT-AG 0 1.7632090809905748e-05 281 rna-XM_024740056.1 23404111 6 945543 945823 Neophocaena asiaeorientalis 189058 AAA|GTAGGTGTTT...GATCATTTGACA/GATCATTTGACA...TTCAG|AGT 1 1 74.502
127495181 GT-AG 0 1.000000099473604e-05 44514 rna-XM_024740056.1 23404111 7 945858 990371 Neophocaena asiaeorientalis 189058 AAA|GTGAGTACCG...CGCTTTTTAACG/CGCTTTTTAACG...TGTAG|GAT 2 1 76.617
127495182 GT-AG 0 1.000000099473604e-05 17748 rna-XM_024740056.1 23404111 8 990469 1008216 Neophocaena asiaeorientalis 189058 CAG|GTAGGACCAG...ATTTTTTTCTTC/TGTTGTCTAATG...CACAG|GCT 0 1 82.649
127495183 GT-AG 0 3.124972933302068e-05 1529 rna-XM_024740056.1 23404111 9 1008255 1009783 Neophocaena asiaeorientalis 189058 AAA|GTAAGTTATT...CAGGTCTTGAGT/CCATTAGTGATC...CGTAG|TCT 2 1 85.012
127495184 GT-AG 0 1.000000099473604e-05 1447 rna-XM_024740056.1 23404111 10 1009924 1011370 Neophocaena asiaeorientalis 189058 GAA|GTGAGTCCCA...AGCCCTTTATCT/TAGGTATTTACT...TTCAG|GAC 1 1 93.719

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