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

✎ 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
24327734 GT-AG 0 1.000000099473604e-05 513 rna-XM_003564240.4 4621471 1 47558355 47558867 Brachypodium distachyon 15368 GAG|GTCAGTACTG...TTTGTCCTAACT/TTTGTCCTAACT...TGCAG|GTC 1 1 5.348
24327735 GT-AG 0 1.000000099473604e-05 149 rna-XM_003564240.4 4621471 2 47558916 47559064 Brachypodium distachyon 15368 CAA|GTCAGTCCCC...TGGCCATTATTG/GGGAATCTCACT...TTCAG|GTT 1 1 6.362
24327736 GT-AG 0 0.0018970213628501 862 rna-XM_003564240.4 4621471 3 47561095 47561956 Brachypodium distachyon 15368 ACG|GTATGATTTT...TAATCTTTATGT/ATATCACTAATC...GTCAG|ATT 0 1 49.271
24327737 GT-AG 0 0.0004266158562728 80 rna-XM_003564240.4 4621471 4 47562278 47562357 Brachypodium distachyon 15368 AAT|GTAAGCATCT...AAGCTCTTACTT/TCCTATTTGATT...GACAG|GAT 0 1 56.056
24327738 GT-AG 0 0.0192999298332363 109 rna-XM_003564240.4 4621471 5 47562445 47562553 Brachypodium distachyon 15368 CTG|GTCTCTCTCT...TATTTTTCGATG/GCTGAATTTATT...TACAG|TTA 0 1 57.895
24327739 GT-AG 0 3.226259494598724e-05 94 rna-XM_003564240.4 4621471 6 47563151 47563244 Brachypodium distachyon 15368 CGA|GTAAGCACCC...TGCCCCTTCCCT/CATGGATTAACC...TGTAG|GTT 0 1 70.514
24327740 GT-AG 0 1.000000099473604e-05 164 rna-XM_003564240.4 4621471 7 47563410 47563573 Brachypodium distachyon 15368 CAG|GTGATTGGTG...TTCCCATTGACT/TTTCATTTCACA...TGCAG|AGG 0 1 74.001
24327741 GT-AG 0 1.184030462868936e-05 416 rna-XM_003564240.4 4621471 8 47563869 47564284 Brachypodium distachyon 15368 CTG|GTAAGCAGCT...AATTACTTAATA/CTTTTCCTCATA...TGCAG|GTT 1 1 80.237
24327742 GT-AG 0 1.000000099473604e-05 93 rna-XM_003564240.4 4621471 9 47564500 47564592 Brachypodium distachyon 15368 AAG|GTAATCAAAT...TTGATTTTCATT/TTGATTTTCATT...GACAG|ATT 0 1 84.781
24327743 GT-AG 0 3.010612799494549e-05 181 rna-XM_003564240.4 4621471 10 47564899 47565079 Brachypodium distachyon 15368 GAG|GTAAGCTGTT...TTGCTCTTATGT/TTTGCTCTTATG...TGCAG|GTT 0 1 91.249
24327744 GT-AG 0 1.000000099473604e-05 1605 rna-XM_003564240.4 4621471 11 47565144 47566748 Brachypodium distachyon 15368 TTG|GTAGGAAATC...AATATCTTGTCA/GTTGTACTGATT...TACAG|TTG 1 1 92.602
24327745 GT-AG 0 0.0092642652126655 74 rna-XM_003564240.4 4621471 12 47566989 47567062 Brachypodium distachyon 15368 ATG|GTATATTTCT...GTTCTCATACTA/CTCATACTAATT...TCCAG|GGA 1 1 97.675

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