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

✎ 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
49484594 GT-AG 0 0.0001047104521943 1012 rna-XM_004673489.2 9129081 2 9511530 9512541 Condylura cristata 143302 TGG|GTAAGCTGCT...AATTACTTATTT/TAATTACTTATT...TCTAG|AGA 2 1 19.865
49484595 GT-AG 0 0.0001811127732226 87 rna-XM_004673489.2 9129081 3 9512591 9512677 Condylura cristata 143302 TCT|GTAAGTAATA...TCCTTTTTAACA/TCCTTTTTAACA...TGCAG|AGC 0 1 21.092
49484596 GT-AG 0 1.000000099473604e-05 3214 rna-XM_004673489.2 9129081 4 9512747 9515960 Condylura cristata 143302 AGT|GTGAGTATCA...TGTAACTTACTA/GTGTAACTTACT...TTTAG|AAT 0 1 22.821
49484597 GT-AG 0 3.323553190363892e-05 13139 rna-XM_004673489.2 9129081 5 9517641 9530779 Condylura cristata 143302 CAG|GTAACACTCC...ATAACTTTAAGT/GTGAAACTAATT...CACAG|GCT 0 1 64.905
49484598 GT-AG 0 1.000000099473604e-05 800 rna-XM_004673489.2 9129081 6 9530886 9531685 Condylura cristata 143302 CAG|GTCAGAGCCT...TATGCCTTAATT/CATTGTCTTATG...AATAG|GGC 1 1 67.56
49484599 GT-AG 0 1.000000099473604e-05 1188 rna-XM_004673489.2 9129081 7 9531787 9532974 Condylura cristata 143302 CAG|GTAGAAGACA...TTCATTTTTCCT/ATTCTATTCATT...TTTAG|GTG 0 1 70.09
49484600 GT-AG 0 7.175622014073416e-05 1090 rna-XM_004673489.2 9129081 8 9533037 9534126 Condylura cristata 143302 TTT|GTAAGTTACC...TAGATCTTCATG/TTGCATTTCATT...TGAAG|CAT 2 1 71.643
49484601 GT-AG 0 1.000000099473604e-05 1241 rna-XM_004673489.2 9129081 9 9534273 9535513 Condylura cristata 143302 AAG|GTAAATGGGC...ACTCTCTTACTA/CACTCTCTTACT...TAAAG|TGG 1 1 75.301
49484602 GT-AG 0 1.000000099473604e-05 1629 rna-XM_004673489.2 9129081 10 9535609 9537237 Condylura cristata 143302 ATG|GTAAAACTCC...GATGACTGAACT/TGAACTCTCATT...TTCAG|CGG 0 1 77.68
49484603 GT-AG 0 1.000000099473604e-05 1055 rna-XM_004673489.2 9129081 11 9537341 9538395 Condylura cristata 143302 CTG|GTAAGAAATA...TGTTCCTTTACT/CCTTTACTCATG...TCCAG|AGG 1 1 80.261
49488668 GT-AG 0 5.606519970757096e-05 834 rna-XM_004673489.2 9129081 1 9510650 9511483 Condylura cristata 143302 AGT|GTGAGTTTCC...GCTTCCTTATTT/TGCTTCCTTATT...TACAG|TTG   0 18.838

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