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)

11 rows where transcript_id = 29163127

✎ 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
162621108 GT-AG 0 4.243113406913247e-05 4660 rna-XM_015810280.1 29163127 1 800927 805586 Protobothrops mucrosquamatus 103944 TGG|GTAGGTTCGA...TATCCTTTAAAC/TTTAAACTTACT...TTCAG|GGG 0 1 3.2
162621109 GT-AG 0 1.000000099473604e-05 2373 rna-XM_015810280.1 29163127 2 798439 800811 Protobothrops mucrosquamatus 103944 CAG|GTACAAAACT...AATACTTTGCTT/AACAAATTAATA...TGTAG|GAC 1 1 9.333
162621110 GT-AG 0 1.000000099473604e-05 1761 rna-XM_015810280.1 29163127 3 796442 798202 Protobothrops mucrosquamatus 103944 CAG|GTGAGCATAT...TTTTTCTTTGCT/TAATATGTAATA...CTTAG|GAC 0 1 21.92
162621111 GT-AG 0 1.000000099473604e-05 1509 rna-XM_015810280.1 29163127 4 794794 796302 Protobothrops mucrosquamatus 103944 AAG|GTGAGGATGA...TAAGTTTTGTTT/AAAAATCTCACC...TGCAG|GTT 1 1 29.333
162621112 GT-AG 0 1.000000099473604e-05 4892 rna-XM_015810280.1 29163127 5 789783 794674 Protobothrops mucrosquamatus 103944 CGG|GTACGAAGGC...TTTTGTTTATCC/CTTTTGTTTATC...TATAG|GAT 0 1 35.68
162621113 GT-AG 0 1.000000099473604e-05 832 rna-XM_015810280.1 29163127 6 788837 789668 Protobothrops mucrosquamatus 103944 AAG|GTAGTGGGGA...TTTATTCTGATG/TTTATTCTGATG...TACAG|GTT 0 1 41.76
162621114 GT-AG 0 1.000000099473604e-05 1859 rna-XM_015810280.1 29163127 7 786866 788724 Protobothrops mucrosquamatus 103944 ATG|GTAAGACATT...AGATCCTTGTTA/TTGTTATTCAAA...TTTAG|GTG 1 1 47.733
162621115 GT-AG 0 0.0845113766951684 1902 rna-XM_015810280.1 29163127 8 784758 786659 Protobothrops mucrosquamatus 103944 AAG|GTAGCTTTTT...GCTTTCTTACAT/TGCTTTCTTACA...CGTAG|ATG 0 1 58.72
162621116 GT-AG 0 1.000000099473604e-05 2506 rna-XM_015810280.1 29163127 9 782116 784621 Protobothrops mucrosquamatus 103944 CTG|GTGAGTTCTT...TTACTTTTAGAA/GAATTGTTGATT...TTCAG|ATG 1 1 65.973
162621117 GT-AG 0 1.000000099473604e-05 7181 rna-XM_015810280.1 29163127 10 774666 781846 Protobothrops mucrosquamatus 103944 GAG|GTACGACGTC...AATATCTTGAAT/TTTTTGCTAATA...TCTAG|GTT 0 1 80.32
162621118 GT-AG 0 0.0004388178082462 11922 rna-XM_015810280.1 29163127 11 762514 774435 Protobothrops mucrosquamatus 103944 ATA|GTAAGTTTTA...GTTTCTTTCTTT/TTATTTCTAAAA...TTTAG|CCA 2 1 92.587

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