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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
197352020 GT-AG 0 1.000000099473604e-05 596 rna-XM_032213914.1 35062892 1 149560974 149561569 Thamnophis elegans 35005 AAG|GTGATGAGGT...TCTGCTATAAAC/AAATTATTCAAT...TGCAG|GAT 2 1 0.958
197352021 GT-AG 0 0.0001357241589124 10527 rna-XM_032213914.1 35062892 2 149561633 149572159 Thamnophis elegans 35005 TAG|GTAAGCTCCC...TTTTTCTTGGTC/ATAATGCTAACT...TTCAG|AGC 2 1 2.166
197352022 GT-AG 0 0.0002562598390105 17462 rna-XM_032213914.1 35062892 3 149572344 149589805 Thamnophis elegans 35005 AAG|GTATTTAAAT...TATATTTTAATG/TATATTTTAATG...TTTAG|GTG 0 1 5.693
197352023 GT-AG 0 0.0001706284852672 2907 rna-XM_032213914.1 35062892 5 149590012 149592918 Thamnophis elegans 35005 CAG|GTACCAAAGC...TGCTTATTAACT/TATTAACTGACT...ACTAG|GCT 0 1 9.603
197352024 GT-AG 0 1.000000099473604e-05 2071 rna-XM_032213914.1 35062892 6 149593013 149595083 Thamnophis elegans 35005 TTG|GTGAGCTCCC...CTGTGCTTAGCG/ACTGAAGTCACT...TTTAG|GCA 1 1 11.405
197352025 GT-AG 0 0.0001242094707553 243 rna-XM_032213914.1 35062892 8 149595346 149595588 Thamnophis elegans 35005 CAG|GTATAAGATC...TCCTTCTTAATT/TCCTTCTTAATT...TCCAG|CTT 0 1 16.389
197352026 GT-AG 0 0.0013955898260937 1446 rna-XM_032213914.1 35062892 9 149595773 149597218 Thamnophis elegans 35005 GAA|GTATGTAGAT...TCCATTTTATTT/CAGAATTTTATT...ATCAG|TGT 1 1 19.916
197352027 GT-AG 0 1.000000099473604e-05 582 rna-XM_032213914.1 35062892 10 149597379 149597960 Thamnophis elegans 35005 CAA|GTAAGTAACA...CTGGTTATACCT/AAATATTTCAAA...TATAG|GGA 2 1 22.983
197352028 GT-AG 0 1.000000099473604e-05 2458 rna-XM_032213914.1 35062892 11 149598124 149600581 Thamnophis elegans 35005 AAG|GTTGGTTTGC...TCTCTCTTATTT/TATGTTTTTACA...ACCAG|CAG 0 1 26.107
197352029 GT-AG 0 1.000000099473604e-05 9047 rna-XM_032213914.1 35062892 12 149603895 149612941 Thamnophis elegans 35005 CAG|GTAAAAATAC...TTTTTTTTAAAA/TTTTTTTTTAAA...CTCAG|GCT 1 1 89.611
197352030 GT-AG 0 1.000000099473604e-05 486 rna-XM_032213914.1 35062892 13 149613133 149613618 Thamnophis elegans 35005 GAG|GTCAGGATAT...CTTCTTTTATTT/TTTTATTTCATT...AACAG|CCT 0 1 93.272
197352031 GT-AG 0 1.000000099473604e-05 924 rna-XM_032213914.1 35062892 14 149613640 149614563 Thamnophis elegans 35005 AAG|GTAAGTCATG...TAATTTTTGTCC/AGATGAGTAATT...TAAAG|GGC 0 1 93.675
197352032 GT-AG 0 2.0763830969415935e-05 1204 rna-XM_032213914.1 35062892 15 149614715 149615918 Thamnophis elegans 35005 AAT|GTAAGTATTT...AACACCTTGTTT/TTGTTTTTTATG...ACTAG|TTG 1 1 96.569

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