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

✎ 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
130193376 GT-AG 0 1.000000099473604e-05 1962 rna-gnl|WGS:VZSV|NOTJUL_R09862_mrna 23944516 1 9250212 9252173 Nothocercus julius 2585813 AAG|GTGAGAATCT...TCTTTCTTGGCT/TTTTGTTTCAAT...TGCAG|GGT 1 1 12.669
130193377 GT-AG 0 1.000000099473604e-05 415 rna-gnl|WGS:VZSV|NOTJUL_R09862_mrna 23944516 2 9252257 9252671 Nothocercus julius 2585813 GGG|GTAAGAGAAA...ATGCTCTTTTTG/TTAGGATTAAAT...TTCAG|ATG 0 1 18.293
130193378 GT-AG 0 1.722426255202921e-05 1863 rna-gnl|WGS:VZSV|NOTJUL_R09862_mrna 23944516 3 9252721 9254583 Nothocercus julius 2585813 ATG|GTAAGATTTA...ATACTCTTATCT/TATCTTTTGATT...CTTAG|CAG 1 1 21.612
130193379 GT-AG 0 2.232536284660768e-05 226 rna-gnl|WGS:VZSV|NOTJUL_R09862_mrna 23944516 4 9254719 9254944 Nothocercus julius 2585813 GAG|GTAAGCATGA...TTTTCTTTGTTT/TAATGAATGACT...CTCAG|GTT 1 1 30.759
130193380 GT-AG 0 1.000000099473604e-05 394 rna-gnl|WGS:VZSV|NOTJUL_R09862_mrna 23944516 5 9255025 9255418 Nothocercus julius 2585813 GAG|GTAAATCAAG...GTAACTGTGAAT/CTGTGAATTACT...TGCAG|GGT 0 1 36.179
130193381 GT-AG 0 1.000000099473604e-05 1359 rna-gnl|WGS:VZSV|NOTJUL_R09862_mrna 23944516 6 9255581 9256939 Nothocercus julius 2585813 GCA|GTGAGTTTCT...TCACTCTTGTTT/CTCACTCTCACT...TCTAG|CTT 0 1 47.154
130193382 GT-AG 0 1.000000099473604e-05 2602 rna-gnl|WGS:VZSV|NOTJUL_R09862_mrna 23944516 7 9257022 9259623 Nothocercus julius 2585813 GAG|GTGAGTTTGT...GACTTCTTACTA/AGACTTCTTACT...TACAG|GCT 1 1 52.71
130193383 GT-AG 0 1.080613203562608e-05 6126 rna-gnl|WGS:VZSV|NOTJUL_R09862_mrna 23944516 8 9259753 9265878 Nothocercus julius 2585813 CAG|GTAAGCCGCT...ATTATCTTATTT/AATTATCTTATT...AATAG|CAG 1 1 61.45
130193384 GT-AG 0 0.0001304921006307 168 rna-gnl|WGS:VZSV|NOTJUL_R09862_mrna 23944516 9 9265993 9266160 Nothocercus julius 2585813 CAG|GTAAGCTGTG...GCATCTTTATTT/AGCATCTTTATT...TACAG|GAA 1 1 69.173
130193385 GT-AG 0 1.000000099473604e-05 863 rna-gnl|WGS:VZSV|NOTJUL_R09862_mrna 23944516 10 9266347 9267209 Nothocercus julius 2585813 AAG|GTAGGTAGAA...TTCTTCTGAACT/TTTCTACTTATT...TGCAG|GTC 1 1 81.775
130193386 GT-AG 0 0.0172395456141857 1353 rna-gnl|WGS:VZSV|NOTJUL_R09862_mrna 23944516 11 9267354 9268706 Nothocercus julius 2585813 TTG|GTATGTTGGG...TGTGCTTTAATT/TGTGCTTTAATT...CCTAG|GTT 1 1 91.531

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