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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
99478883 GT-AG 0 1.433495495739145e-05 894 Joasc.01G061900.1.v1.1 18637033 1 16640669 16641562 Joinvillea ascendens 38723 GAG|GTGCATCTCT...TGTTCTTTAGTT/AATATTTTGATT...TATAG|ATA 1 1 3.311
99478884 GT-AG 0 1.000000099473604e-05 8726 Joasc.01G061900.1.v1.1 18637033 2 16641663 16650388 Joinvillea ascendens 38723 ACT|GTGAGAATAA...CTTTTGTTAAAT/TATGAGCTCATT...TCTAG|GCA 2 1 5.746
99478885 GT-AG 0 1.000000099473604e-05 334 Joasc.01G061900.1.v1.1 18637033 3 16650498 16650831 Joinvillea ascendens 38723 CAG|GTGATGCACT...GTATGTTTGATT/GTATGTTTGATT...TGCAG|GAA 0 1 8.4
99478886 GT-AG 0 0.0002161380807795 23843 Joasc.01G061900.1.v1.1 18637033 4 16652338 16676180 Joinvillea ascendens 38723 CAG|GTAATCTTAG...CACTTTTTATTT/TTTTATTTGATT...ACTAG|GTG 0 1 45.069
99478887 GC-AG 0 1.000000099473604e-05 112 Joasc.01G061900.1.v1.1 18637033 5 16676424 16676535 Joinvillea ascendens 38723 CAG|GCATGTTCTC...CTTTTCTTCTCT/AGTATCTTCACA...GACAG|GTT 0 1 50.986
99478888 GT-AG 0 0.5355824924843465 949 Joasc.01G061900.1.v1.1 18637033 6 16676851 16677799 Joinvillea ascendens 38723 CAA|GTATGCTCAG...TTTCCTTTGACC/TTTGACCTAATA...TTCAG|GCT 0 1 58.656
99478889 GT-AG 0 1.000000099473604e-05 289 Joasc.01G061900.1.v1.1 18637033 7 16678040 16678328 Joinvillea ascendens 38723 AAG|GTATGGAGTT...TGTTCTTTGGTT/CTTTGGTTGATG...TTCAG|GTG 0 1 64.5
99478890 GT-AG 0 1.000000099473604e-05 82 Joasc.01G061900.1.v1.1 18637033 8 16678614 16678695 Joinvillea ascendens 38723 AGG|GTAAATAACT...ATTATTTTGATC/ATTATTTTGATC...TCCAG|GAA 0 1 71.439
99478891 GT-AG 0 1.000000099473604e-05 785 Joasc.01G061900.1.v1.1 18637033 9 16678918 16679702 Joinvillea ascendens 38723 CAG|GTGAATAGAA...TACATTTTGATG/TTTCTTCTAACT...TGTAG|GCT 0 1 76.844
99478892 GT-AG 0 1.000000099473604e-05 160 Joasc.01G061900.1.v1.1 18637033 10 16679865 16680024 Joinvillea ascendens 38723 AAG|GTGAGTGTCT...TACACTTTAATC/TACACTTTAATC...CTTAG|GTT 0 1 80.789
99478893 GT-AG 0 1.000000099473604e-05 6195 Joasc.01G061900.1.v1.1 18637033 11 16680160 16686354 Joinvillea ascendens 38723 GAG|GTGATGCTTT...TGATCTTTGTTT/CCATTACTAATT...GCCAG|TTG 0 1 84.076
99478894 GT-AG 0 0.0065575911796473 134 Joasc.01G061900.1.v1.1 18637033 12 16686592 16686725 Joinvillea ascendens 38723 CAG|GTACCCGAAC...CTTCCATTATTT/CCATTATTTATT...TTCAG|ATT 0 1 89.847
99478895 GT-AG 0 1.000000099473604e-05 5854 Joasc.01G061900.1.v1.1 18637033 13 16686900 16692753 Joinvillea ascendens 38723 AAG|GTAATGACTT...TAAGTTTTGAAC/TAAGTTTTGAAC...TGCAG|GGT 0 1 94.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 28.482ms · Data license: ODbL · Data source: Larue & Roy, 2023 · About: Minor Intron Database (WtMTA)