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

✎ 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
168293982 GT-AG 0 1.000000099473604e-05 1063 rna-XM_025169756.1 30057387 1 1110801 1111863 Python bivittatus 176946 CAG|GTAAGGGGCG...CCCTCCTTTTCG/TGCTGCCTCACT...TGCAG|CTC 2 1 14.866
168293983 GT-AG 0 1.000000099473604e-05 25344 rna-XM_025169756.1 30057387 2 1085299 1110642 Python bivittatus 176946 ACG|GTGAGTCAGG...TTTTTCTTTTCA/TTTCTTTTCACT...TGCAG|ACA 1 1 23.899
168293984 GT-AG 0 1.000000099473604e-05 101351 rna-XM_025169756.1 30057387 3 983786 1085136 Python bivittatus 176946 CAG|GTAAGGCTAC...CTCCTCTTTGTA/TTGTATTTGAGT...CCCAG|CCA 1 1 33.162
168293985 GT-AG 0 1.000000099473604e-05 446 rna-XM_025169756.1 30057387 4 983166 983611 Python bivittatus 176946 ATG|GTAAGTGAAC...TGCTTCTTTTCT/TCTTTTCTGATT...TGCAG|AAC 1 1 43.11
168293986 GT-AG 0 1.000000099473604e-05 14477 rna-XM_025169756.1 30057387 5 968517 982993 Python bivittatus 176946 TGG|GTAAGTGATC...TTTCTCTTATGC/CTTTCTCTTATG...CACAG|GTT 2 1 52.945
168293987 GT-AG 0 0.0002632283305452 11686 rna-XM_025169756.1 30057387 6 956783 968468 Python bivittatus 176946 ACA|GTAGGTATTT...GTTGCCTTCTCA/TGCCTTCTCATT...TCCAG|TTA 2 1 55.689
168293988 GT-AG 0 1.000000099473604e-05 2192 rna-XM_025169756.1 30057387 7 954497 956688 Python bivittatus 176946 AAA|GTGAGTGAGT...GCGTTCTTACCA/TGCGTTCTTACC...AACAG|GTG 0 1 61.063
168293989 GT-AG 0 1.000000099473604e-05 11747 rna-XM_025169756.1 30057387 8 942643 954389 Python bivittatus 176946 CCT|GTGAGTTAAT...GTCTTCTAAATT/TGTCTTCTAAAT...GCTAG|GTG 2 1 67.181
168293990 GT-AG 0 8.147068058488167e-05 5753 rna-XM_025169756.1 30057387 9 936775 942527 Python bivittatus 176946 CCG|GTATGTATAT...CTCTCCATAGGC/GAATAATTGATC...GACAG|GAC 0 1 73.756
168293991 GT-AG 0 1.000000099473604e-05 2497 rna-XM_025169756.1 30057387 10 934132 936628 Python bivittatus 176946 CAA|GTGAGTTATC...AAACTCTTATCT/AAATTGTTCACC...CACAG|CCA 2 1 82.104
168293992 GT-AG 0 1.000000099473604e-05 1126 rna-XM_025169756.1 30057387 11 932859 933984 Python bivittatus 176946 TAG|GTGAGTGCTA...TCATGCTTGACT/TTTCTTCTCATG...TGCAG|GTC 2 1 90.509

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