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

✎ 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
68847321 GT-AG 0 1.000000099473604e-05 742 rna-XM_009639053.1 12917246 1 1954424 1955165 Egretta garzetta 188379 TCC|GTGAGTATTT...GAATTCATACCT/AAGGAATTCATA...TGCAG|AAG 1 1 3.942
68847322 GT-AG 0 1.000000099473604e-05 964 rna-XM_009639053.1 12917246 2 1953401 1954364 Egretta garzetta 188379 GAA|GTGGAACAAG...GTACCCTTGGAG/ATAATAGTGAAG...AGAAG|GTG 0 1 6.886
68847323 GT-AG 1 99.36745142542816 1018 rna-XM_009639053.1 12917246 3 1952276 1953293 Egretta garzetta 188379 TAA|GTATCCTTTC...TTTTCCTTATTG/CTTTTCCTTATT...CTCAG|ACA 2 1 12.226
68847324 GT-AG 0 0.0079873701549098 1030 rna-XM_009639053.1 12917246 4 1951083 1952112 Egretta garzetta 188379 GTG|GTATGCATTT...GTGTCATTACAG/AAAGGTGTCATT...TCAAG|GCA 0 1 20.359
68847325 GT-AG 0 1.000000099473604e-05 322 rna-XM_009639053.1 12917246 5 1950658 1950979 Egretta garzetta 188379 AAG|GTAGTGTAAA...TGTTTCTTCCTC/TGTGCTTGTATT...TTCAG|GTG 1 1 25.499
68847326 GT-AG 0 1.000000099473604e-05 1560 rna-XM_009639053.1 12917246 6 1948881 1950440 Egretta garzetta 188379 CAG|GTAGGTTTAC...GGATTTTTTTCT/TTTTTTTCTATA...CTCAG|GTT 2 1 36.327
68847327 GT-AG 0 1.000000099473604e-05 510 rna-XM_009639053.1 12917246 7 1948256 1948765 Egretta garzetta 188379 AAG|GTAAGTAAGA...CTTCTCTCAATT/GCTTCTCTCAAT...TGAAG|GTT 0 1 42.066
68847328 GT-AG 0 1.000000099473604e-05 1234 rna-XM_009639053.1 12917246 8 1946857 1948090 Egretta garzetta 188379 CGG|GTGAGTTTTA...CTGGCCTTATAA/CCCTTTTTTATG...TGAAG|GTG 0 1 50.299
68847329 GT-AG 0 1.000000099473604e-05 653 rna-XM_009639053.1 12917246 9 1946048 1946700 Egretta garzetta 188379 CAG|GTAAGATACA...TTTGTTTTTTCT/TTGAGTTTGAAA...TTCAG|GAT 0 1 58.084
68847330 GT-AG 0 1.000000099473604e-05 1053 rna-XM_009639053.1 12917246 10 1944947 1945999 Egretta garzetta 188379 ATG|GTAAGTTTGT...TCTGTTTTGCAC/CAGCATGTAACA...TGCAG|AGC 0 1 60.479
68847331 GT-AG 0 1.000000099473604e-05 2129 rna-XM_009639053.1 12917246 11 1942718 1944846 Egretta garzetta 188379 ACC|GTAAGTACAC...AATACCTCAGTC/CAATACCTCAGT...GTCAG|GCG 1 1 65.469
68847332 GT-AG 0 1.9711095821704668e-05 588 rna-XM_009639053.1 12917246 12 1941981 1942568 Egretta garzetta 188379 CAG|GTATGTGAGT...TCCACCTTGCCT/TGGTCTCTCACA...CTTAG|GGT 0 1 72.904

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