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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase, in_cds

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
92255472 GC-AG 0 1.000000099473604e-05 111 rna-XM_021424299.1 17265321 2 884998 885108 Herrania umbratica 108875 AAG|GCATGGGTCA...TCTTTCTTGCAT/TTCAGTCTAACT...TGCAG|TAC 0 1 11.438
92255473 GT-AG 0 1.000000099473604e-05 109 rna-XM_021424299.1 17265321 3 885164 885272 Herrania umbratica 108875 TAG|GTAAGGGAAA...CTTTCCATAACC/TTGATGATAACT...TTCAG|AGG 1 1 12.833
92255474 GT-AG 0 3.838139346208043e-05 547 rna-XM_021424299.1 17265321 4 885449 885995 Herrania umbratica 108875 AAG|GTAAATTTTA...TTGGGTTTAATT/TTGGGTTTAATT...GCCAG|GTG 0 1 17.296
92255475 GT-AG 0 1.000000099473604e-05 133 rna-XM_021424299.1 17265321 5 886197 886329 Herrania umbratica 108875 GAG|GTCAGTTTTT...GAAGGCTTATCT/GCTTATCTGACA...TTCAG|GTG 0 1 22.394
92255476 GT-AG 0 0.0001104880456633 144 rna-XM_021424299.1 17265321 6 886590 886733 Herrania umbratica 108875 CCT|GTAAGTTTCT...GATTACTTGGTT/TGGAACTTCAGA...TGCAG|GTC 2 1 28.988
92255477 GT-AG 0 0.0002488061631144 271 rna-XM_021424299.1 17265321 7 887275 887545 Herrania umbratica 108875 CAG|GTACTCACTT...TTTTCTATAAAG/TTTTCTATAAAG...TGCAG|GTT 0 1 42.709
92255478 GT-AG 0 1.000000099473604e-05 598 rna-XM_021424299.1 17265321 8 887926 888523 Herrania umbratica 108875 CAG|GTTTGTCAAC...TTTCCATTAACT/AATTCATTAATC...TACAG|CTT 2 1 52.346
92255479 GT-AG 0 1.190179336851066e-05 122 rna-XM_021424299.1 17265321 9 888943 889064 Herrania umbratica 108875 CTG|GTAATATGTG...CAATTTTTAATC/CAATTTTTAATC...TGCAG|CCA 1 1 62.972
92255480 GT-AG 0 0.0005536800352196 80 rna-XM_021424299.1 17265321 10 889307 889386 Herrania umbratica 108875 GAG|GTTTGCACCC...GAAACTTTAATT/GAAACTTTAATT...TTCAG|AAA 0 1 69.11
92255481 GT-AG 0 1.2933476042005575e-05 228 rna-XM_021424299.1 17265321 11 889635 889862 Herrania umbratica 108875 ATG|GTATGAAAGT...GACCTGTTAATT/GACCTGTTAATT...TGCAG|GTA 2 1 75.399
92255482 GT-AG 0 1.000000099473604e-05 92 rna-XM_021424299.1 17265321 12 890276 890367 Herrania umbratica 108875 ACG|GTGAGTTTTT...GGTTTCTTAAGA/TGGTTTCTTAAG...TTCAG|GCA 1 1 85.874
92263735 GT-AG 0 0.0001436652720947 173 rna-XM_021424299.1 17265321 1 884552 884724 Herrania umbratica 108875 AAG|GTCCCATCTA...TTTCTATTAATA/TTTCTATTAATA...TCCAG|GCC   0 4.666

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