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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, 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
171035787 GT-AG 0 7.226736280567826e-05 2068 rna-XM_020510132.1 30628694 1 130218 132285 Rhincodon typus 259920 AAG|GTAAGCTCCT...AAATTTTTAAAT/AAATTTTTAAAT...TTTAG|CTG 1 1 1.509
171035788 GT-AG 0 0.000518831241786 1420 rna-XM_020510132.1 30628694 2 128662 130081 Rhincodon typus 259920 TAA|GTATGTGCAT...CTTCTGTTAATG/CAGTTTGTAATC...TTTAG|CAA 2 1 10.837
171035789 GT-AG 0 1.0944384530728428e-05 10636 rna-XM_020510132.1 30628694 3 117908 128543 Rhincodon typus 259920 CAG|GTACGTGATG...AAGTCTTTATTT/AAAGTCTTTATT...AATAG|GAA 0 1 18.93
171035790 GT-AG 0 1.000000099473604e-05 1469 rna-XM_020510132.1 30628694 4 116206 117674 Rhincodon typus 259920 GAG|GTAAAAGAAT...ATTGCCATATTG/GTGGTAATGATT...ATTAG|GCT 2 1 34.911
171035791 GT-AG 0 1.000000099473604e-05 8137 rna-XM_020510132.1 30628694 5 108014 116150 Rhincodon typus 259920 AAG|GTAAGCACAA...GTATTTTTACAT/TTACTTTTCATA...TTTAG|ATC 0 1 38.683
171035792 GT-AG 0 1.000000099473604e-05 8693 rna-XM_020510132.1 30628694 6 99218 107910 Rhincodon typus 259920 CGG|GTAAGTTGTG...TTCAACTAAATT/ACTAAATTAATA...TGCAG|GGC 1 1 45.748
171035793 GT-AG 0 1.000000099473604e-05 4075 rna-XM_020510132.1 30628694 7 94954 99028 Rhincodon typus 259920 TTG|GTGAGTTCTA...TCATTCTTATTT/TTTGTTTTCATT...CACAG|AGA 1 1 58.711
171035794 GT-AG 0 1.000000099473604e-05 2661 rna-XM_020510132.1 30628694 8 92232 94892 Rhincodon typus 259920 TAA|GTAAGGCTTT...TAACTTTTATTG/CTAACTTTTATT...TTTAG|TTG 2 1 62.894
171035795 GT-AG 0 1.6747781291138045e-05 10850 rna-XM_020510132.1 30628694 9 81123 91972 Rhincodon typus 259920 AAG|GTAACAATTA...ACAACCTTTTCT/TTTCTATTCATT...CATAG|GTG 0 1 80.658
171035796 GT-AG 0 1.000000099473604e-05 10265 rna-XM_020510132.1 30628694 10 70813 81077 Rhincodon typus 259920 GAG|GTGAGTGTTT...TGTATTTTTGTG/ACACGGTTCACA...TATAG|ATT 0 1 83.745
171035797 AT-AC 1 99.99999999943424 9857 rna-XM_020510132.1 30628694 11 60835 70691 Rhincodon typus 259920 CTC|ATATCCTTTA...TCATCCTTAATA/TCATGTTTCATC...CCCAC|AGC 1 1 92.044

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