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

✎ 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
213932505 GT-AG 0 1.000000099473604e-05 144 rna-XM_025073460.1 38690293 2 34020139 34020282 Ziziphus jujuba 326968 TTG|GTTGGTTTAT...AAATTTTTCATG/AAATTTTTCATG...TGCAG|GTT 2 1 17.16
213932506 GT-AG 0 0.0008129939777844 141 rna-XM_025073460.1 38690293 3 34021031 34021171 Ziziphus jujuba 326968 TTA|GTAAGTTTCT...TGGATCTTACTT/ATGGATCTTACT...TGCAG|CAA 0 1 26.966
213932507 GT-AG 0 0.0134540978578347 272 rna-XM_025073460.1 38690293 4 34021665 34021936 Ziziphus jujuba 326968 AAG|GTAGCTGTTA...TTGTCCTTAAAT/ATGTTTCTTACT...TCCAG|CAG 1 1 33.429
213932508 GT-AG 0 1.000000099473604e-05 66 rna-XM_025073460.1 38690293 5 34022092 34022157 Ziziphus jujuba 326968 CAG|GTAAAAGTCT...TTTCTCTTGCTC/CTGATACTAAAC...GATAG|GTA 0 1 35.461
213932509 GT-AG 0 0.0319749728842552 124 rna-XM_025073460.1 38690293 6 34025587 34025710 Ziziphus jujuba 326968 TTG|GTATGCCTTA...TTCCTCTGGATT/TGTCAACTTATT...TGCAG|AAG 0 1 80.414
213932510 GT-AG 0 1.000000099473604e-05 680 rna-XM_025073460.1 38690293 7 34025924 34026603 Ziziphus jujuba 326968 GAG|GTGAGGCTTT...CCATTCTTATTG/TCCATTCTTATT...AACAG|AAA 0 1 83.207
213932511 GT-AG 0 1.000000099473604e-05 89 rna-XM_025073460.1 38690293 8 34026808 34026896 Ziziphus jujuba 326968 AGG|GTAAAAGTTT...TTTCCTTTAGAT/TTTTCCTTTAGA...TGCAG|AAT 0 1 85.881
213932512 GT-AG 0 1.000000099473604e-05 498 rna-XM_025073460.1 38690293 9 34027101 34027598 Ziziphus jujuba 326968 CAG|GTGATTTCTT...TTTATCTTATTT/TTTTATCTTATT...TGCAG|GTA 0 1 88.555
213932513 GT-AG 0 1.000000099473604e-05 1623 rna-XM_025073460.1 38690293 10 34027758 34029380 Ziziphus jujuba 326968 GAG|GTAAATACAT...GTTTTCTAAATT/TTTGGTTTGATC...AACAG|AGT 0 1 90.64
213932514 GT-AG 0 0.0067376132648975 287 rna-XM_025073460.1 38690293 11 34029808 34030094 Ziziphus jujuba 326968 CAG|GTATGTTATT...CTAACTTTATTT/CTTTATTTAATC...ATCAG|ATT 1 1 96.238
213932515 GT-AG 0 1.7847741417184097e-05 512 rna-XM_025073460.1 38690293 12 34030180 34030691 Ziziphus jujuba 326968 ATG|GTAATATTTT...TTATCCTTTATA/ACTGAACTTATC...TGAAG|GTC 2 1 97.352
213945246 GT-AG 0 1.000000099473604e-05 108 rna-XM_025073460.1 38690293 1 34018899 34019006 Ziziphus jujuba 326968 ACG|GTTTTAAATA...GTTTCTTTGGCC/TATGGATTGATT...TGCAG|TTA   0 2.347

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