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)

14 rows where transcript_id = 29320863

✎ 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
163356984 GT-AG 0 1.000000099473604e-05 327 rna-XM_021964667.1 29320863 1 53213 53539 Prunus avium 42229 ACG|GTCAGTTCCC...CTGTGCTTATCT/ACCGTATTGATT...ATTAG|GTG 1 1 17.253
163356985 GT-AG 0 1.000000099473604e-05 99 rna-XM_021964667.1 29320863 2 53584 53682 Prunus avium 42229 AAA|GTCTGAAGAT...TTTGATTTAATT/TTTGATTTAATT...TGCAG|CTT 0 1 20.29
163356986 GT-AG 0 1.680552188949667e-05 109 rna-XM_021964667.1 29320863 3 53793 53901 Prunus avium 42229 TAA|GTAAGTAGTT...TTTGTTTTATTT/CTTTGTTTTATT...TTCAG|GTA 2 1 27.881
163356987 GT-AG 0 1.000000099473604e-05 228 rna-XM_021964667.1 29320863 4 53940 54167 Prunus avium 42229 CTG|GTTAGTTGTC...GTTCTCATACTT/CAGGTTCTCATA...CGCAG|ATG 1 1 30.504
163356988 GT-AG 0 7.492810909302502e-05 510 rna-XM_021964667.1 29320863 5 54246 54755 Prunus avium 42229 ACG|GTTTGTATCT...TTATGCTTGATC/ATATTTTTCAAA...TGTAG|GTA 1 1 35.887
163356989 GT-AG 0 1.000000099473604e-05 79 rna-XM_021964667.1 29320863 6 54810 54888 Prunus avium 42229 CTG|GTAATAGTTT...AACTGCTCAATA/AAGTTAGTAATA...CTCAG|GTT 1 1 39.614
163356990 GT-AG 0 2.4806595558509257e-05 90 rna-XM_021964667.1 29320863 7 54991 55080 Prunus avium 42229 TTG|GTAAGTTGAT...TGGGTTTTGACA/TGGGTTTTGACA...CTCAG|TCC 1 1 46.653
163356991 GT-AG 0 0.0002041395451701 89 rna-XM_021964667.1 29320863 8 55170 55258 Prunus avium 42229 GAG|GTTTGCCTTA...ACTGTGTTGATC/ACTGTGTTGATC...GTTAG|TCT 0 1 52.795
163356992 GT-AG 0 6.430425180665354e-05 489 rna-XM_021964667.1 29320863 9 55363 55851 Prunus avium 42229 CAG|GTAAATTTAC...ATTTTTTTAAAG/AATTTTTTTAAA...CACAG|GTT 2 1 59.972
163356993 GT-AG 0 0.0020574150708428 88 rna-XM_021964667.1 29320863 10 55921 56008 Prunus avium 42229 ATG|GTATGTATTG...AAGATTTTATTG/AAATAATTAATT...TTTAG|GTA 2 1 64.734
163356994 GT-AG 0 1.000000099473604e-05 110 rna-XM_021964667.1 29320863 11 56125 56234 Prunus avium 42229 AAG|GTGCTGTTGA...TCTCTCTCGATC/CTAGAGTTCAAT...TGCAG|GAT 1 1 72.74
163356995 GT-AG 0 0.0155182146258303 63 rna-XM_021964667.1 29320863 12 56270 56332 Prunus avium 42229 TTG|GTATGCATCA...ATAACTTTCATC/ATAACTTTCATC...TGCAG|TTC 0 1 75.155
163356996 GT-AG 0 1.983926811188576e-05 153 rna-XM_021964667.1 29320863 13 56476 56628 Prunus avium 42229 CAG|GTACTGTGTT...AAATCTTTACTG/AAAATCTTTACT...TCCAG|GGC 2 1 85.024
163356997 GT-AG 0 1.000000099473604e-05 232 rna-XM_021964667.1 29320863 14 56752 56983 Prunus avium 42229 CAA|GTAAGTAGAT...GGGTACTAAACT/GGGGTACTAAAC...TGCAG|GGT 2 1 93.513

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