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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: is_minor, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
1930519 GT-AG 0 1.000000099473604e-05 812 Acora.01G056500.1.v1.1 310718 1 6466264 6467075 Acorus americanus 263995 CCG|GTTCGAATGA...GTCATTTTGACT/GTCATTTTGACT...TGCAG|GTA 1 1 6.915
1930520 GT-AG 0 1.000000099473604e-05 168 Acora.01G056500.1.v1.1 310718 2 6466067 6466234 Acorus americanus 263995 AAA|GTGCGTCTTC...CGGTTATTGACA/CGGTTATTGACA...TGTAG|GTC 0 1 7.839
1930521 GT-AG 0 1.232489086146925e-05 518 Acora.01G056500.1.v1.1 310718 3 6465446 6465963 Acorus americanus 263995 ACA|GTAAGTGGGT...TTGCTTTTATTG/CTTGCTTTTATT...TGCAG|ATA 1 1 11.122
1930522 GT-AG 0 1.000000099473604e-05 719 Acora.01G056500.1.v1.1 310718 4 6464552 6465270 Acorus americanus 263995 AAG|GTGTGTGACC...TATTTTTTAAAT/TATTTTTTAAAT...TGCAG|GTT 2 1 16.699
1930523 GT-AG 1 96.33702946705624 977 Acora.01G056500.1.v1.1 310718 5 6463377 6464353 Acorus americanus 263995 ACA|GTATCCTCAT...TTATTCTTGACA/TTATTCTTGACA...TTTAG|CTT 2 1 23.008
1930524 GT-AG 0 1.000000099473604e-05 563 Acora.01G056500.1.v1.1 310718 6 6462656 6463218 Acorus americanus 263995 CAG|GTGATATGAG...TAATCGTTGATA/AAAGCACTGATT...GACAG|ATG 1 1 28.043
1930525 GT-AG 0 9.040366051741908e-05 1240 Acora.01G056500.1.v1.1 310718 7 6461139 6462378 Acorus americanus 263995 GAG|GTGTTTTCTT...CTTTTATTAATT/TATATTTTCATT...TCCAG|GGC 2 1 36.871
1930526 GT-AG 1 99.25829289059511 86 Acora.01G056500.1.v1.1 310718 8 6460838 6460923 Acorus americanus 263995 CAT|GTATCCTTTT...TTTTCTTTATCG/ATTTTCTTTATC...TTCAG|ATA 1 1 43.722
1930527 GT-AG 0 0.0001117305532123 81 Acora.01G056500.1.v1.1 310718 9 6460658 6460738 Acorus americanus 263995 GCT|GTAAATAATA...ATGTTCATAATG/TTCATGTTCATA...GCCAG|GTA 1 1 46.877
1930528 GT-AG 0 1.000000099473604e-05 605 Acora.01G056500.1.v1.1 310718 10 6459523 6460127 Acorus americanus 263995 GCG|GTAAGATGTT...ATTCTCTTCTCT/AATTGTTTCACT...CACAG|GTG 0 1 63.767
1930529 GT-AG 0 0.4733822536715894 543 Acora.01G056500.1.v1.1 310718 11 6458210 6458752 Acorus americanus 263995 AAG|GTATCCCTCT...GTCGATTTAGTA/ATGTCACTGACT...TACAG|GGG 2 1 88.305
1930530 GT-AG 0 0.0100497911359649 98 Acora.01G056500.1.v1.1 310718 12 6457913 6458010 Acorus americanus 263995 GCG|GTATGTCCAA...TATTTCTTAATC/TATTTCTTAATC...CACAG|ATG 0 1 94.646

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