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

✎ 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
21480663 GT-AG 0 0.0001250696073187 840 rna-XM_039036025.1 4157739 1 4185871 4186710 Benincasa hispida 102211 AAG|GTAGCGTGAG...AAGTTATTGATA/AAGTTATTGATA...TTTAG|ATC 0 1 6.894
21480664 GT-AG 0 0.0001830491465524 170 rna-XM_039036025.1 4157739 2 4185357 4185526 Benincasa hispida 102211 GGG|GTACGTAATT...TTTATTTTGATG/TTTATTTTGATG...ACTAG|TTG 2 1 11.055
21480665 GT-AG 0 6.961235607685967e-05 7694 rna-XM_039036025.1 4157739 3 4176984 4184677 Benincasa hispida 102211 GAG|GTGTGCTACT...TATTTGTTAAAT/TTCTTGTTTATT...TGTAG|GTA 0 1 19.267
21480666 GT-AG 0 1.000000099473604e-05 1341 rna-XM_039036025.1 4157739 4 4175538 4176878 Benincasa hispida 102211 GCT|GTAAGGGATT...TTATTTTTCATT/TTATTTTTCATT...TTCAG|GTT 0 1 20.537
21480667 GT-AG 0 1.000000099473604e-05 1397 rna-XM_039036025.1 4157739 5 4173969 4175365 Benincasa hispida 102211 ATG|GTGAGTAGTG...TTTGTCTCGACT/ACTTGATTAATC...CCAAG|GCA 1 1 22.617
21480668 GT-AG 0 1.000000099473604e-05 912 rna-XM_039036025.1 4157739 6 4171297 4172208 Benincasa hispida 102211 CTG|GTGAGCGACA...ATCTCCTGATCT/AATCTCCTGATC...TTTAG|GTT 0 1 43.904
21480669 GT-AG 0 0.0002962000036438 884 rna-XM_039036025.1 4157739 7 4170200 4171083 Benincasa hispida 102211 CGG|GTACGCCTGG...ATGTCTTTTGTA/TCTGTTCTGATG...TGCAG|ATC 0 1 46.48
21480670 GT-AG 0 1.000000099473604e-05 487 rna-XM_039036025.1 4157739 8 4167445 4167931 Benincasa hispida 102211 AAG|GTCAGTTGAC...AAGCTTTTGATC/ATTATTCTCATT...AACAG|GTT 0 1 73.911
21480671 GT-AG 0 0.0257794655109826 606 rna-XM_039036025.1 4157739 9 4166729 4167334 Benincasa hispida 102211 AAG|GTACCGTATC...CCTTCTTTGATA/CCTTCTTTGATA...GTCAG|CAT 2 1 75.242
21480672 GT-AG 0 1.3299325821859092e-05 83 rna-XM_039036025.1 4157739 10 4166243 4166325 Benincasa hispida 102211 ATA|GTAAGTCATT...ATAATTTTAGAT/TTGGAAATAATT...ATTAG|GTA 0 1 80.116
21480673 GT-AG 0 9.628394595134009e-05 1188 rna-XM_039036025.1 4157739 11 4164737 4165924 Benincasa hispida 102211 GAG|GTAAACCTCT...TGTTTCTTTTCC/ATCGTGTTCACT...TGCAG|ATT 0 1 83.962
21480674 GT-AG 0 0.0003316236758092 400 rna-XM_039036025.1 4157739 12 4164079 4164478 Benincasa hispida 102211 CAG|GTAACTCTGT...ATGTCCTGATTT/CATGTCCTGATT...TGCAG|GAT 0 1 87.083

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