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)

12 rows where transcript_id = 29163131

✎ 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
162621141 GT-AG 0 1.000000099473604e-05 1968 rna-XM_015810984.2 29163131 1 1283773 1285740 Protobothrops mucrosquamatus 103944 CGG|GTGAGCTGAG...ACAATCTGATAT/GTTGAGCTGATC...TGCAG|GCC 2 1 3.519
162621142 GT-AG 0 1.000000099473604e-05 669 rna-XM_015810984.2 29163131 2 1282985 1283653 Protobothrops mucrosquamatus 103944 ATG|GTAAGAATTT...CTATATTTGATC/CTATATTTGATC...TTTAG|TTG 1 1 11.421
162621143 GT-AG 0 0.0004679275465731 499 rna-XM_015810984.2 29163131 3 1282326 1282824 Protobothrops mucrosquamatus 103944 TGG|GTATGTCAGA...AATTCCTTTTCT/CCTTTTCTAATA...TACAG|CTC 2 1 22.045
162621144 GT-AG 0 4.019061678924282e-05 837 rna-XM_015810984.2 29163131 4 1281414 1282250 Protobothrops mucrosquamatus 103944 CCA|GTAAGTGTGC...TATTTTTTGAAT/ACTGTACTCATA...TTCAG|TGC 2 1 27.025
162621145 GT-AG 0 1.000000099473604e-05 292 rna-XM_015810984.2 29163131 5 1281028 1281319 Protobothrops mucrosquamatus 103944 GTG|GTGAGTATTT...TTTGTCTTGCCT/GAATATTTCAAA...TTTAG|GCA 0 1 33.267
162621146 GT-AG 0 4.23538582844575e-05 3209 rna-XM_015810984.2 29163131 6 1277702 1280910 Protobothrops mucrosquamatus 103944 AAG|GTACATAAGC...TCTTCTGTAACA/AACACCTTCATC...CTTAG|ATT 0 1 41.036
162621147 GT-AG 0 0.0225527591359679 1084 rna-XM_015810984.2 29163131 7 1276535 1277618 Protobothrops mucrosquamatus 103944 ACA|GTATGTATAG...GTTTTTTTATAA/TGTTTTTTTATA...TTCAG|ATT 2 1 46.547
162621148 GT-AG 0 1.000000099473604e-05 408 rna-XM_015810984.2 29163131 8 1275901 1276308 Protobothrops mucrosquamatus 103944 ACT|GTGAGTATCA...ACATTCTCAACT/TACATTCTCAAC...TTCAG|TTT 0 1 61.554
162621149 GT-AG 0 1.000000099473604e-05 888 rna-XM_015810984.2 29163131 9 1274858 1275745 Protobothrops mucrosquamatus 103944 CAG|GTAAAGTAAA...GTGTCCTTTATG/GTGTCCTTTATG...TTTAG|AGG 2 1 71.846
162621150 GT-AG 0 2.977703938580077e-05 325 rna-XM_015810984.2 29163131 10 1274443 1274767 Protobothrops mucrosquamatus 103944 CAA|GTAAATATGT...TTTTTCTTTGTG/TTTGTGTTCAAA...ATTAG|GCT 2 1 77.822
162621151 GT-AG 0 1.000000099473604e-05 679 rna-XM_015810984.2 29163131 11 1273633 1274311 Protobothrops mucrosquamatus 103944 CAG|GTAAAGTATT...TTATTCTTAATG/TTTATACTCAAA...TCTAG|ATT 1 1 86.521
162621152 GT-AG 0 6.811445245551265e-05 553 rna-XM_015810984.2 29163131 12 1273012 1273564 Protobothrops mucrosquamatus 103944 AAA|GTAAGTTTGA...TGTTTCTCAAAT/TTGTTTCTCAAA...TTCAG|TTG 0 1 91.036

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