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)

14 rows where transcript_id = 30057367

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, 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
168293678 GT-AG 0 0.0001233948160263 8656 rna-XM_007419879.3 30057367 2 381490 390145 Python bivittatus 176946 AAG|GTAAGCCTGC...CTGTTCTTGACT/CTGTTCTTGACT...TGCAG|GTA 0 1 6.088
168293679 GT-AG 0 1.000000099473604e-05 15659 rna-XM_007419879.3 30057367 3 390305 405963 Python bivittatus 176946 GAG|GTAAGTACAT...CCATTTTTATTT/TTTTTATTTAAA...TTCAG|AAT 0 1 9.62
168293680 GT-AG 0 1.000000099473604e-05 3648 rna-XM_007419879.3 30057367 4 406027 409674 Python bivittatus 176946 CAG|GTACAACAGT...CATTTCTTTTTT/TTCTTTTTTAAC...CCTAG|GAA 0 1 11.02
168293681 GT-AG 0 1.000000099473604e-05 1192 rna-XM_007419879.3 30057367 5 410905 412096 Python bivittatus 176946 CAG|GTGAGGTTTC...TTCTCATTAACT/TTTGTTCTCATT...TGCAG|CAG 0 1 38.347
168293682 GT-AG 0 0.0001670856973636 782 rna-XM_007419879.3 30057367 6 412271 413052 Python bivittatus 176946 GAG|GTATGTGCTC...TGCCTTTTAAAC/CCTCCTCTGACT...TGCAG|ATC 0 1 42.213
168293683 GT-AG 0 1.000000099473604e-05 1390 rna-XM_007419879.3 30057367 7 413179 414568 Python bivittatus 176946 CAG|GTTAGTGATA...AAGTTCTCAATT/AAAGTTCTCAAT...ATCAG|CTG 0 1 45.012
168293684 GT-AG 0 1.000000099473604e-05 1271 rna-XM_007419879.3 30057367 8 414800 416070 Python bivittatus 176946 GAG|GTATGGCAAT...AGACTCCTACTC/CTCCTACTCATT...TTTAG|GTG 0 1 50.144
168293685 GT-AG 0 1.000000099473604e-05 4945 rna-XM_007419879.3 30057367 9 416179 421123 Python bivittatus 176946 ACG|GTAAGATGGA...TTTTCCTTTCTG/ATGAGCATCATC...TTTAG|CCC 0 1 52.544
168293686 GT-AG 0 1.000000099473604e-05 11613 rna-XM_007419879.3 30057367 10 421292 432904 Python bivittatus 176946 CAG|GTTAGAATCC...TTCGTTTTAATT/TTCGTTTTAATT...TGCAG|TTA 0 1 56.276
168293687 GT-AG 0 1.000000099473604e-05 1872 rna-XM_007419879.3 30057367 11 433157 435028 Python bivittatus 176946 CAG|GTAGGAACCA...ATAACTTTGTTT/TAAGTGCTTATG...TTCAG|CTT 0 1 61.875
168293688 GT-AG 0 2.04659990318544e-05 763 rna-XM_007419879.3 30057367 12 435101 435863 Python bivittatus 176946 GAG|GTAAGCTGAA...GCTTCTTTTATG/GCTTCTTTTATG...TTCAG|ACC 0 1 63.475
168293689 GT-AG 0 1.000000099473604e-05 611 rna-XM_007419879.3 30057367 13 435935 436545 Python bivittatus 176946 AAG|GTAGGATATC...ATTGCCTTCTCT/CTGTTACTCATT...CTTAG|GAC 2 1 65.052
168293690 GT-AG 0 1.000000099473604e-05 1390 rna-XM_007419879.3 30057367 14 437969 439358 Python bivittatus 176946 GAG|GTAATATTTG...CAGGTCTTATTT/TTCTTTTTCACT...TGCAG|GAT 0 1 96.667
168293809 GT-AG 0 1.000000099473604e-05 23350 rna-XM_007419879.3 30057367 1 357915 381264 Python bivittatus 176946 AAG|GTGAGCGGGA...CATCCTTTGACC/CATCCTTTGACC...CCCAG|GAT   0 1.689

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