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

✎ 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
187538365 GT-AG 0 1.000000099473604e-05 101 rna-XM_021451846.1 33469701 1 64204540 64204640 Sorghum bicolor 4558 AAG|GTCAGCCTCT...GGGTTTCTGACA/GGGTTTCTGACA...TGCAG|TTT 0 1 8.545
187538366 GT-AG 0 1.0099411638893932e-05 625 rna-XM_021451846.1 33469701 2 64203822 64204446 Sorghum bicolor 4558 GAG|GTTTGTGTTG...TTCTTCTTATGC/TTTCTTCTTATG...TGCAG|GAA 0 1 10.464
187538367 GT-AG 0 0.0001616924327273 301 rna-XM_021451846.1 33469701 3 64203458 64203758 Sorghum bicolor 4558 CAG|GTACTCACTT...TTTATTTTATGC/ATTTATTTTATG...TGCAG|AGT 0 1 11.765
187538368 GT-AG 0 0.0002659106525805 83 rna-XM_021451846.1 33469701 4 64203288 64203370 Sorghum bicolor 4558 CAG|GTAATTTTAG...GGTTTCTTATCT/TGGTTTCTTATC...TACAG|ATG 0 1 13.56
187538369 GT-AG 0 0.0004229838876329 80 rna-XM_021451846.1 33469701 5 64203055 64203134 Sorghum bicolor 4558 GAG|GTGCACCTTT...TCTTTCTTAACT/TCTTTCTTAACT...TGTAG|ATT 0 1 16.718
187538370 GT-AG 0 0.0275107568158927 738 rna-XM_021451846.1 33469701 6 64202159 64202896 Sorghum bicolor 4558 ACG|GTATGTATGT...TTATCTTTGACC/GCTTGTCTTATC...TGCAG|ATT 2 1 19.979
187538371 GT-AG 0 0.0237276202159551 112 rna-XM_021451846.1 33469701 7 64201812 64201923 Sorghum bicolor 4558 AAG|GTGTCCACCT...TTTGTTTTAAAA/TTTGTTTTAAAA...TGCAG|TTG 0 1 24.83
187538372 GT-AG 0 1.000000099473604e-05 983 rna-XM_021451846.1 33469701 8 64200718 64201700 Sorghum bicolor 4558 AAG|GTGAAAATTT...TATGTCTTTTTT/ATATGTGTAACT...AGCAG|CTT 0 1 27.121
187538373 GT-AG 0 0.0002607874337488 94 rna-XM_021451846.1 33469701 9 64199565 64199658 Sorghum bicolor 4558 CAG|GTATGTATTT...TCATCTTCAATC/TCTATTCTCATT...TTCAG|GTT 0 1 48.978
187538374 GT-AG 0 0.0447869992007392 337 rna-XM_021451846.1 33469701 10 64198967 64199303 Sorghum bicolor 4558 CAG|GTACTCTTCA...TTGACCTTAAAA/ATCTTATTGACC...TGTAG|ATT 0 1 54.365
187538375 GT-AG 0 0.3622237911079 499 rna-XM_021451846.1 33469701 11 64198282 64198780 Sorghum bicolor 4558 CAG|GTACCTTTTT...TTTTTTTTTTCT/GGACGTCTGATA...GCCAG|AGG 0 1 58.204
187538376 GT-AG 0 1.000000099473604e-05 88 rna-XM_021451846.1 33469701 12 64197042 64197129 Sorghum bicolor 4558 AAG|GTAATTTGCA...GATGCCATATCA/TGGGTACTGACA...TCTAG|GTT 0 1 81.981
187538377 GT-AG 0 0.0018155850272627 93 rna-XM_021451846.1 33469701 13 64196598 64196690 Sorghum bicolor 4558 CAG|GTATGTTGTC...AAACCCTAAGCC/ATTTTTTGTATT...AACAG|ATG 0 1 89.226

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