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)

13 rows where transcript_id = 35103496

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: 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
197657427 GT-AG 0 1.000000099473604e-05 108 rna-XM_018129947.1 35103496 2 35749957 35750064 Theobroma cacao 3641 CAG|GTAGGTCATG...ACAATCTTTGTG/ACTGTAGACATC...TGAAG|GGC 0 1 39.947
197657428 GT-AG 0 1.000000099473604e-05 411 rna-XM_018129947.1 35103496 3 35749228 35749638 Theobroma cacao 3641 AAG|GTGAATTACT...TTGTTCTTTTCT/TTTTTGTTTAAC...ATTAG|GAA 0 1 46.95
197657429 GT-AG 0 0.0002276811983341 111 rna-XM_018129947.1 35103496 4 35748988 35749098 Theobroma cacao 3641 CAG|GTATGGATAG...ATTTCCTTAATA/AAAATTTTCATT...TTTAG|GCT 0 1 49.791
197657430 GT-AG 0 1.000000099473604e-05 154 rna-XM_018129947.1 35103496 5 35748711 35748864 Theobroma cacao 3641 CAG|GTTCTTGCAA...TGAGGCTTGATT/TTCTTTCTGATA...TGCAG|TTT 0 1 52.499
197657431 GT-AG 0 1.174849080602518e-05 123 rna-XM_018129947.1 35103496 6 35748420 35748542 Theobroma cacao 3641 CAG|GTGTATATGA...CTTTTCTCAGTT/TCTTTTCTCAGT...TACAG|ATT 0 1 56.199
197657432 GT-AG 0 0.0001262803058057 112 rna-XM_018129947.1 35103496 7 35748185 35748296 Theobroma cacao 3641 GAG|GTAGGCTGCA...TTGTCCTCAAAA/TCTGCATTCATT...CACAG|GTT 0 1 58.908
197657433 GT-AG 0 0.1619297043804914 296 rna-XM_018129947.1 35103496 8 35747754 35748049 Theobroma cacao 3641 CAG|GTATCTAAGC...AGCCTTTTAATA/AGCCTTTTAATA...GGCAG|AGG 0 1 61.881
197657434 GT-AG 0 0.0002028976068699 89 rna-XM_018129947.1 35103496 9 35747537 35747625 Theobroma cacao 3641 GAA|GTAAGTCTGA...TGACCCTTATTT/TTGTCACTAATT...TTCAG|ATA 2 1 64.699
197657435 GT-AG 0 0.829470218972003 69 rna-XM_018129947.1 35103496 10 35747359 35747427 Theobroma cacao 3641 CAG|GTATCTCTTT...TCTTCTTTATAG/TTCTTCTTTATA...TGCAG|GGT 0 1 67.1
197657436 GT-AG 0 0.0002068785744624 183 rna-XM_018129947.1 35103496 11 35746633 35746815 Theobroma cacao 3641 AAG|GTAACTGCTT...TTTTTCTTTTTG/TGTGATCTTATG...ATAAG|GTT 0 1 79.057
197657437 GT-AG 0 0.0002066671233862 99 rna-XM_018129947.1 35103496 12 35746390 35746488 Theobroma cacao 3641 CAG|GTAGTTTGGA...ATTTTCTTAATT/ATTTTCTTAATT...TGCAG|GCT 0 1 82.229
197657438 GT-AG 0 2.785440409256927e-05 220 rna-XM_018129947.1 35103496 13 35745877 35746096 Theobroma cacao 3641 AAG|GTATTAGCAT...TCTCCTTTAATC/TATGTTTTAACT...TTCAG|GTA 2 1 88.681
197671372 GT-AG 0 2.1668528259578303e-05 202 rna-XM_018129947.1 35103496 1 35751901 35752102 Theobroma cacao 3641 AAG|GTAACTCGAT...AAATCACTAATT/AAATCACTAATT...GGCAG|GTA   0 2.753

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