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

✎ 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
24327798 GT-AG 0 1.000000099473604e-05 92 rna-XM_024462123.1 4621474 1 71534370 71534461 Brachypodium distachyon 15368 GAG|GTCAGTTCTT...ATTCTTCTAACT/ATTCTTCTAACT...TGCAG|CTT 0 1 52.571
24327799 GT-AG 0 0.0520672915107342 88 rna-XM_024462123.1 4621474 2 71534591 71534678 Brachypodium distachyon 15368 CGA|GTATGTATAC...CATGTCTTAACT/TTTTTATTCATG...TTTAG|AGC 0 1 55.334
24327800 GT-AG 0 5.430377800901954e-05 82 rna-XM_024462123.1 4621474 3 71534868 71534949 Brachypodium distachyon 15368 AAG|GTAGTTTTGC...TTTCCCGTGATA/ATTAAGCTAATT...TCTAG|GAT 0 1 59.383
24327801 GT-AG 0 1.000000099473604e-05 1228 rna-XM_024462123.1 4621474 4 71535018 71536245 Brachypodium distachyon 15368 ATC|GTGAGTAATG...ATCTCTTTAATT/CTTTAATTTATT...TGCAG|TCA 2 1 60.84
24327802 GT-AG 0 1.000000099473604e-05 97 rna-XM_024462123.1 4621474 5 71536836 71536932 Brachypodium distachyon 15368 AAG|GTTATTGGTT...AATATTTTATAT/AAATATTTTATA...GACAG|GCG 1 1 73.479
24327803 GT-AG 0 1.000000099473604e-05 735 rna-XM_024462123.1 4621474 6 71537053 71537787 Brachypodium distachyon 15368 AAG|GTAATGTGTA...ATTTCCTTGTTA/GTTATTTTGAGT...TCCAG|TTG 1 1 76.05
24327804 GT-AG 0 0.001778144335962 633 rna-XM_024462123.1 4621474 7 71537887 71538519 Brachypodium distachyon 15368 TTG|GTATATCAAT...TAATTCTTATAC/ATAATTCTTATA...TGCAG|CAG 1 1 78.171
24327805 GT-AG 0 0.0072278552431571 69 rna-XM_024462123.1 4621474 8 71538609 71538677 Brachypodium distachyon 15368 CAG|GTAACTGTTC...TCTTTTTTAACA/TCTTTTTTAACA...TGCAG|TCA 0 1 80.077
24327806 GT-AG 0 1.3337621054608365e-05 145 rna-XM_024462123.1 4621474 9 71538888 71539032 Brachypodium distachyon 15368 GAG|GTAAATTTCT...GCTCTTTTGTCA/TCTTTTGTCAAT...TGCAG|GGA 0 1 84.576
24327807 GT-AG 0 1.000000099473604e-05 630 rna-XM_024462123.1 4621474 10 71539306 71539935 Brachypodium distachyon 15368 AAG|GTTGGTGTGT...TATGTTTGGACT/TGGTTTCTGATA...TACAG|ATG 0 1 90.424
24327808 GT-AG 0 0.0018910914939494 272 rna-XM_024462123.1 4621474 11 71540081 71540352 Brachypodium distachyon 15368 TTG|GTAAGCTTCT...CTCTTCTTACCC/AATTTATTCACA...TTTAG|TTC 1 1 93.53
24327809 GT-AG 0 0.0001134607412266 843 rna-XM_024462123.1 4621474 12 71540487 71541329 Brachypodium distachyon 15368 GTG|GTATGGCTAC...TGCCTTTTATTT/GTATTTCTTATG...TGCAG|GTT 0 1 96.401
24327810 GT-AG 0 0.0055286258526216 98 rna-XM_024462123.1 4621474 13 71541411 71541508 Brachypodium distachyon 15368 AAG|GTAACCAGAT...ATAACCTTATTT/AATAACCTTATT...TGCAG|ATT 0 1 98.136

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