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

✎ 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
213932478 GT-AG 0 1.000000099473604e-05 898 rna-XM_016013323.2 38690291 1 40224567 40225464 Ziziphus jujuba 326968 TGG|GTAAGATCTT...TGTTTCTGATTT/ATGTTTCTGATT...TTTAG|GGT 2 1 2.487
213932479 GT-AG 0 0.000951928279463 743 rna-XM_016013323.2 38690291 2 40226192 40226934 Ziziphus jujuba 326968 AAT|GTAATCTACA...TATCTCATATTT/TACTATCTCATA...AACAG|AAT 0 1 7.565
213932480 GT-AG 0 1.000000099473604e-05 578 rna-XM_016013323.2 38690291 3 40232928 40233505 Ziziphus jujuba 326968 CAG|GTATGACTAC...TATTATTTATTT/CTATTATTTATT...TACAG|GCT 2 1 49.427
213932481 GT-AG 0 0.0429786500790682 344 rna-XM_016013323.2 38690291 4 40235020 40235363 Ziziphus jujuba 326968 TAG|GTAACCATTG...GTAGCTTTATTA/CGTAGCTTTATT...TACAG|GTG 1 1 60.003
213932482 GT-AG 0 7.950340361867936e-05 581 rna-XM_016013323.2 38690291 5 40235628 40236208 Ziziphus jujuba 326968 CAG|GTAATTTTGC...GGCTTTTTAATG/AGGATCTTCATG...TTCAG|GCA 1 1 61.847
213932483 GT-AG 0 0.0007894371170318 841 rna-XM_016013323.2 38690291 6 40236430 40237270 Ziziphus jujuba 326968 CAG|GTATTATTAG...GGTATTTTGAAA/GGTATTTTGAAA...ATCAG|GTT 0 1 63.391
213932484 GT-AG 0 0.0004239761592305 524 rna-XM_016013323.2 38690291 7 40237543 40238066 Ziziphus jujuba 326968 TAG|GTATGTTGAA...ATTTCTTTCATG/ATGGTATTGATT...TCCAG|GCG 2 1 65.291
213932485 GT-AG 0 1.000000099473604e-05 81 rna-XM_016013323.2 38690291 8 40241086 40241166 Ziziphus jujuba 326968 CAG|GTTAGTCTGG...ATCTCTCTAACA/ATCTCTCTAACA...AACAG|ATT 0 1 86.379
213932486 GT-AG 0 1.000000099473604e-05 238 rna-XM_016013323.2 38690291 9 40241300 40241537 Ziziphus jujuba 326968 CAG|GTAGTTCCAT...TTTTTCTAATTG/CTTTTTCTAATT...TGCAG|ATT 1 1 87.308
213932487 GT-AG 0 5.155369102628208e-05 122 rna-XM_016013323.2 38690291 10 40242062 40242183 Ziziphus jujuba 326968 GAG|GTACTGCTGA...CTTTCTTTAGTT/GCTTTCTTTAGT...TGCAG|GAA 0 1 90.968
213932488 GT-AG 0 1.000000099473604e-05 668 rna-XM_016013323.2 38690291 11 40243096 40243763 Ziziphus jujuba 326968 CAG|GTTTGGGCCC...TCATCATTAACA/TCATCATTAACA...TGCAG|GTG 0 1 97.339
213932489 GT-AG 0 0.0003154040688033 624 rna-XM_016013323.2 38690291 12 40243947 40244570 Ziziphus jujuba 326968 CAG|GTATATATGT...ATTTTCCTACTA/TTCCTACTAATT...TGCAG|GAA 0 1 98.617

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