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

✎ View and edit SQL

This data as json, CSV (advanced)

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
121405928 GT-AG 0 0.0003802723810232 204 rna-XM_024162670.1 22370839 1 30468 30671 Morus notabilis 981085 CAG|GTATTTGCTT...GATTTCTTCATC/GATTTCTTCATC...TCCAG|ATT 0 1 12.304
121405929 GT-AG 0 0.0187212908033034 116 rna-XM_024162670.1 22370839 2 30735 30850 Morus notabilis 981085 GAG|GTATGCTTAT...TGTCTCTGAATC/CTGTCTCTGAAT...TATAG|GTT 0 1 17.002
121405930 GT-AG 0 1.2920331608618343e-05 180 rna-XM_024162670.1 22370839 3 30923 31102 Morus notabilis 981085 ATT|GTAAGGTTTC...TCATCTGTGAAT/TAAAACTTCATC...TCCAG|GTT 0 1 22.371
121405931 GT-AG 0 0.0001183876320539 112 rna-XM_024162670.1 22370839 4 31211 31322 Morus notabilis 981085 AAG|GTGCACATCA...TTTTTCTTATCA/TTTTTTCTTATC...TGTAG|CCT 0 1 30.425
121405932 GT-AG 0 1.6774068783251338e-05 130 rna-XM_024162670.1 22370839 5 31398 31527 Morus notabilis 981085 CAG|GTGACATTGA...TCATTTTTGACT/TCATTTTTGACT...GGCAG|GGG 0 1 36.018
121405933 GT-AG 0 0.0228861597418723 976 rna-XM_024162670.1 22370839 6 31582 32557 Morus notabilis 981085 GAG|GTACATTTTC...ATCTCCTTAGTG/TGTTTGTTTATG...AACAG|GTT 0 1 40.045
121405934 GT-AG 0 0.0005518053898745 614 rna-XM_024162670.1 22370839 7 32684 33297 Morus notabilis 981085 AAG|GTCTGCTGCT...AATATTTTGAAC/GAGTTGCTAACT...TGTAG|ATA 0 1 49.441
121405935 GT-AG 0 1.4936376779253727e-05 161 rna-XM_024162670.1 22370839 8 33388 33548 Morus notabilis 981085 TCC|GTGAGTATTT...TTTCCTTTGAAT/AAGGTGTTTACT...AACAG|CGA 0 1 56.152
121405936 GT-AG 0 1.000000099473604e-05 283 rna-XM_024162670.1 22370839 9 33672 33954 Morus notabilis 981085 GAG|GTTGATCTTC...ACTATCTTATAG/GACTATCTTATA...TACAG|GAC 0 1 65.324
121405937 GT-AG 0 8.754047404171307e-05 248 rna-XM_024162670.1 22370839 10 34075 34322 Morus notabilis 981085 CAG|GTATGATTAA...AAATCCTAGATG/TTCCTCCTCATT...GGCAG|GAT 0 1 74.273
121405938 GT-AG 0 0.0049723830784179 447 rna-XM_024162670.1 22370839 11 34440 34886 Morus notabilis 981085 AAG|GTATTTGTAT...CATGTCTTAATT/CATGTCTTAATT...CTCAG|ACA 0 1 82.998
121405939 GT-AG 0 0.0117323540696423 768 rna-XM_024162670.1 22370839 12 34944 35711 Morus notabilis 981085 GAG|GTAACTTCAC...AATATCTTAATC/AATATCTTAATC...TTCAG|GTC 0 1 87.248
121405940 GT-AG 0 0.0023159717308235 613 rna-XM_024162670.1 22370839 13 35787 36399 Morus notabilis 981085 AAG|GTTACCCTTC...CTACTTTTGACA/CTACTTTTGACA...TGCAG|TTT 0 1 92.841

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