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)

12 rows where transcript_id = 30057325

✎ 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
168293285 GT-AG 0 1.000000099473604e-05 2221 rna-XM_007419790.3 30057325 1 130969 133189 Python bivittatus 176946 AAG|GTGAGCTGAT...GGCTCCTGATTC/TGGCTCCTGATT...TTCAG|GGA 1 1 3.115
168293286 GT-AG 0 1.000000099473604e-05 143 rna-XM_007419790.3 30057325 2 130728 130870 Python bivittatus 176946 AAG|GTAAGGGGGC...GATGCTTTTCCT/CTCAGCCTGATG...AACAG|GTG 0 1 10.748
168293287 GT-AG 0 1.000000099473604e-05 464 rna-XM_007419790.3 30057325 3 130160 130623 Python bivittatus 176946 TAG|GTGGGTGACC...AATATCTAATTT/GAATATCTAATT...TGTAG|GTA 2 1 18.847
168293288 GT-AG 0 1.000000099473604e-05 179 rna-XM_007419790.3 30057325 4 129788 129966 Python bivittatus 176946 ACG|GTAGGAGACA...GTCCCCTCAATG/TGTCCCCTCAAT...TGCAG|GCC 0 1 33.879
168293289 GT-AG 0 1.000000099473604e-05 191 rna-XM_007419790.3 30057325 5 129537 129727 Python bivittatus 176946 GAG|GTATGAAGGC...GTCCCCTTTTCT/GCTCTTGTCACT...TCTAG|GTC 0 1 38.551
168293290 GT-AG 0 1.000000099473604e-05 129 rna-XM_007419790.3 30057325 6 129277 129405 Python bivittatus 176946 CTT|GTGAGTGTCT...TCATCCTTTGCC/CCTCCTGTCATC...TGCAG|GGG 2 1 48.754
168293291 GT-AG 0 1.000000099473604e-05 250 rna-XM_007419790.3 30057325 7 129012 129261 Python bivittatus 176946 TGG|GTAAGTGTCC...CTGCCCTCAACT/CTTCGTCTCATT...CACAG|AGA 2 1 49.922
168293292 GT-AG 0 1.000000099473604e-05 639 rna-XM_007419790.3 30057325 8 128238 128876 Python bivittatus 176946 TGG|GTAAGAGAAA...CTGTGCTTGAGG/CTGTGCTTGAGG...GCCAG|CTC 2 1 60.436
168293293 GT-AG 0 0.0359448731433804 634 rna-XM_007419790.3 30057325 9 127506 128139 Python bivittatus 176946 GAG|GTATCTGCCC...TGCTTCTTTTCC/GCTGAAGTAATT...TACAG|GGA 1 1 68.069
168293294 GT-AG 0 1.000000099473604e-05 857 rna-XM_007419790.3 30057325 10 126602 127458 Python bivittatus 176946 GTG|GTAAGTCTGC...CTGGCTTTTCCC/AGTTCACTGACA...TGCAG|CTG 0 1 71.729
168293295 GT-AG 0 1.000000099473604e-05 2282 rna-XM_007419790.3 30057325 11 124227 126508 Python bivittatus 176946 CAG|GTAGGTGTTT...TGGGTCTGACTC/GTGGGTCTGACT...CATAG|GAC 0 1 78.972
168293296 GT-AG 0 0.0001597374714679 157 rna-XM_007419790.3 30057325 12 123901 124057 Python bivittatus 176946 TGG|GTAAGCGTTG...TCTTTTTTGATT/TCTTTTTTGATT...AACAG|GCT 1 1 92.134

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