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)

11 rows where transcript_id = 4181842

✎ 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
21587823 GT-AG 0 5.737111318970318e-05 1948 rna-XM_010677533.2 4181842 2 10557237 10559184 Beta vulgaris 161934 AAG|GTTTGTCTGA...TTGATCTTGATT/TTGATCTTGATT...TGTAG|GGT 2 1 13.363
21587824 GT-AG 0 1.000000099473604e-05 803 rna-XM_010677533.2 4181842 3 10556316 10557118 Beta vulgaris 161934 GCG|GTCAGTATTG...AATTTCTAACCT/AAATTTCTAACC...TGCAG|CTC 0 1 16.294
21587825 GT-AG 0 1.000000099473604e-05 1193 rna-XM_010677533.2 4181842 4 10555026 10556218 Beta vulgaris 161934 ATG|GTAATTGTTT...GTCTCTTCGATT/CTTCGATTGAAT...TGCAG|AGC 1 1 18.703
21587826 GT-AG 0 6.790149578000054e-05 2577 rna-XM_010677533.2 4181842 5 10552342 10554918 Beta vulgaris 161934 AAG|GTACTTCCAA...CTTTCCCTGATT/TCTTTCTTCATT...TTCAG|AAA 0 1 21.361
21587827 GT-AG 0 1.000000099473604e-05 203 rna-XM_010677533.2 4181842 6 10552016 10552218 Beta vulgaris 161934 AAG|GTGAGCTACG...AATTTCTTCATC/AATTTCTTCATC...TTCAG|AAA 0 1 24.416
21587828 GT-AG 0 1.000000099473604e-05 1875 rna-XM_010677533.2 4181842 7 10549987 10551861 Beta vulgaris 161934 AAG|GTGATATACT...TTTGCCTTGGAT/TGTCAGTTGATA...TTCAG|TTT 1 1 28.241
21587829 GT-AG 0 0.0005153675399344 89 rna-XM_010677533.2 4181842 8 10549837 10549925 Beta vulgaris 161934 GGA|GTAAGCAAAT...TGATCCTTAACA/TATATTATGATC...TGTAG|GTT 2 1 29.757
21587830 GT-AG 0 1.000000099473604e-05 953 rna-XM_010677533.2 4181842 9 10548522 10549474 Beta vulgaris 161934 CAG|GTTCGCCTTT...TGTTCTCTATTT/TTCTGACTCATT...TTCAG|GCT 1 1 38.748
21587831 GT-AG 0 0.0002629798722939 205 rna-XM_010677533.2 4181842 10 10546690 10546894 Beta vulgaris 161934 TAG|GTAACATTAT...TCATATTTGATT/CATGTGCTCACT...TGCAG|ATC 2 1 79.16
21593205 GT-AG 0 1.000000099473604e-05 109 rna-XM_010677533.2 4181842 1 10559379 10559487 Beta vulgaris 161934 ACG|GTAATGCCGC...CGCACTTTAATT/ATTTTGTTGATT...CGCAG|GCG   0 10.184
21593206 GT-AG 0 0.2534112584695271 612 rna-XM_010677533.2 4181842 11 10545665 10546276 Beta vulgaris 161934 AAG|GTATCTCCTC...ATGGTTTTGATT/ATGGTTTTGATT...TTCAG|GTG   0 89.419

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