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

✎ 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
51565587 GT-AG 0 1.000000099473604e-05 92 rna-XM_042025728.1 9472590 1 108604 108695 Corvus kubaryi 68294 ACG|GTGAGCGGCG...GCCTCTGTGACG/GCCTCTGTGACG...CGCAG|ACC 0 1 5.439
51565588 GT-AG 0 1.000000099473604e-05 302 rna-XM_042025728.1 9472590 2 108831 109132 Corvus kubaryi 68294 AAG|GTGCGGAGCC...TATTCCTTAACT/CATGATTTCATA...TTCAG|GAG 0 1 13.333
51565589 GT-AG 0 1.000000099473604e-05 506 rna-XM_042025728.1 9472590 3 109194 109699 Corvus kubaryi 68294 TCT|GTGAGTATGA...TGTCCCTTCTCT/TGGTGCCCAACT...CCCAG|ATT 1 1 16.901
51565590 GT-AG 0 1.000000099473604e-05 569 rna-XM_042025728.1 9472590 4 109780 110348 Corvus kubaryi 68294 CAG|GTGAAGTTTG...CTGTCCTGCTCC/GCTGGGGTCAGG...CCCAG|GAG 0 1 21.579
51565591 GT-AG 0 1.000000099473604e-05 253 rna-XM_042025728.1 9472590 5 110418 110670 Corvus kubaryi 68294 CGG|GTAGGAACAT...GCAGCCTTTCCT/AAGTTTGGGACC...TCCAG|GGC 0 1 25.614
51565592 GT-AG 0 1.000000099473604e-05 354 rna-XM_042025728.1 9472590 6 110809 111162 Corvus kubaryi 68294 AAG|GTGAGGGGAA...GAGTCTTTCCCA/ATTTTTCCCATT...CACAG|CAA 0 1 33.684
51565593 GT-AG 0 1.000000099473604e-05 1253 rna-XM_042025728.1 9472590 7 111274 112526 Corvus kubaryi 68294 CAG|GTGAGTCACA...CATCCCTTTGCC/CTGTGTCTCACC...GGCAG|TGG 0 1 40.175
51565594 GT-AG 0 1.901865358309493e-05 288 rna-XM_042025728.1 9472590 8 112662 112949 Corvus kubaryi 68294 AAC|GTAGGTGTCC...CCCGCCTTGTTC/GACTCTCTCAGG...TACAG|AAC 0 1 48.07
51565595 GT-AG 0 1.000000099473604e-05 251 rna-XM_042025728.1 9472590 9 113064 113314 Corvus kubaryi 68294 AAG|GTACAGACAA...TTTCCCTGGAAG/CACTGCCTCAGT...CACAG|GCC 0 1 54.737
51565596 GT-AG 0 0.000240963767775 2065 rna-XM_042025728.1 9472590 10 113483 115547 Corvus kubaryi 68294 CAG|GTACACATCC...GGTCCCTGAGGT/CGGTCCCTGAGG...CGCAG|AGC 0 1 64.561
51565597 GT-AG 0 0.0044588961865419 734 rna-XM_042025728.1 9472590 11 115707 116440 Corvus kubaryi 68294 AAG|GTAACCCTGG...ACAGCCTGGAAG/CCCAGGCTGACA...CACAG|CTG 0 1 73.86
51565598 GT-AG 0 1.000000099473604e-05 269 rna-XM_042025728.1 9472590 12 116549 116817 Corvus kubaryi 68294 AAG|GTAGTGAGCT...CCTTCCTTGCTG/CACTTCCTAAAG...TGCAG|GGC 0 1 80.175
51565599 GT-AG 0 1.000000099473604e-05 1378 rna-XM_042025728.1 9472590 13 116940 118317 Corvus kubaryi 68294 CAG|GTACATGGGG...CATTCTGTGATT/CATTCTGTGATT...CCCAG|GCC 2 1 87.31
51565600 GT-AG 0 1.000000099473604e-05 2304 rna-XM_042025728.1 9472590 14 118450 120753 Corvus kubaryi 68294 GAG|GTAAAATCCA...CTGACCTGAACC/GTTCCACTGACC...GGCAG|CTT 2 1 95.029

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