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)

10 rows where transcript_id = 310685

✎ 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
1930230 GT-AG 0 0.3667170925514955 1573 Acora.01G042900.1.v1.1 310685 2 4670426 4671998 Acorus americanus 263995 AGC|GTCTCTTGTT...GGTTTTTTTCCA/TGTATGCTCATG...TGCAG|TCA 0 1 8.814
1930231 GT-AG 0 1.000000099473604e-05 152 Acora.01G042900.1.v1.1 310685 3 4672104 4672255 Acorus americanus 263995 ATG|GTGAGATTTT...GCTTTCTGATTT/TGCTTTCTGATT...CACAG|ACA 0 1 11.619
1930232 GT-AG 0 1.000000099473604e-05 92 Acora.01G042900.1.v1.1 310685 4 4674074 4674165 Acorus americanus 263995 CTG|GTAATTGTCT...ACTTTTTTAGTT/TTAAGACTTACT...AACAG|GAC 0 1 60.176
1930233 GT-AG 0 1.000000099473604e-05 73 Acora.01G042900.1.v1.1 310685 5 4674355 4674427 Acorus americanus 263995 ACT|GTGAGTATAC...TTCTTCTTATTA/ATTCTTCTTATT...TTTAG|GCA 0 1 65.224
1930234 GT-AG 0 0.0006614969135424 1381 Acora.01G042900.1.v1.1 310685 6 4674571 4675951 Acorus americanus 263995 TGT|GTAAGTATTG...CTGTTTTTAGTA/ATGTCATTTATT...AACAG|ATA 2 1 69.044
1930235 GT-AG 0 1.000000099473604e-05 419 Acora.01G042900.1.v1.1 310685 7 4676198 4676616 Acorus americanus 263995 TCG|GTCAGACAAG...ATTTTTTTATTA/TATTTTTTTATT...TGCAG|GAT 2 1 75.614
1930236 GT-AG 0 0.0020619066423935 591 Acora.01G042900.1.v1.1 310685 8 4676804 4677394 Acorus americanus 263995 AAG|GTATTTCTTT...CTGCTCTTGAGT/TTTCTTCTAAAT...TTCAG|GCC 0 1 80.609
1930237 GT-AG 0 0.0510139901129655 88 Acora.01G042900.1.v1.1 310685 9 4677461 4677548 Acorus americanus 263995 TCG|GTACCATGTT...TGTACTTTATTT/CAATTTCTCATT...ATCAG|GTG 0 1 82.372
1930238 GT-AG 0 1.000000099473604e-05 690 Acora.01G042900.1.v1.1 310685 10 4677796 4678485 Acorus americanus 263995 CAG|GTGCTTTCTC...TGAACCTTCATT/TATATTCTTATG...CATAG|GTA 1 1 88.969
1939152 GT-AG 0 1.000000099473604e-05 148 Acora.01G042900.1.v1.1 310685 1 4670044 4670191 Acorus americanus 263995 AAG|GTTAGGATTT...ATCGTTTTGAAA/TTTCTGTTTATC...TTTAG|GTT   0 3.045

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