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)

13 rows where transcript_id = 21894419

✎ 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
118585095 GT-AG 0 0.0002232032091816 109 rna-XM_016203354.1 21894419 1 13214724 13214832 Miniopterus natalensis 291302 TCC|GTACGTGAAA...ATTTCCTAAACC/TATTTCCTAAAC...TTCAG|GAA 0 1 6.114
118585096 GT-AG 0 0.6678329321005639 6421 rna-XM_016203354.1 21894419 2 13214937 13221357 Miniopterus natalensis 291302 CAG|GTACCTTTTT...TTTTCCTTTTTT/TCATTAATCATT...TCCAG|TGT 2 1 12.952
118585097 GT-AG 0 1.000000099473604e-05 3323 rna-XM_016203354.1 21894419 3 13221449 13224771 Miniopterus natalensis 291302 GTG|GTAAGATTTG...TCATTTTTACAT/TTACATCTCATT...TTTAG|GGG 0 1 18.935
118585098 GT-AG 0 0.0024479541828841 750 rna-XM_016203354.1 21894419 4 13224909 13225658 Miniopterus natalensis 291302 CAG|GTATTATTTA...TAAATTTTACTT/TTTTACTTCATT...AAAAG|ATA 2 1 27.942
118585099 GT-AG 0 0.000119792226143 757 rna-XM_016203354.1 21894419 5 13225738 13226494 Miniopterus natalensis 291302 CAG|GTAGACATCT...GTAATTTTAGTC/GTGTTTCTGAAA...TTTAG|GCA 0 1 33.136
118585100 GT-AG 0 1.000000099473604e-05 2152 rna-XM_016203354.1 21894419 6 13226585 13228736 Miniopterus natalensis 291302 AAG|GTAAGAACTC...CTGGTCTTTTCT/TCTTTTCTCAGG...CTCAG|ATC 0 1 39.053
118585101 GT-AG 0 1.000000099473604e-05 299 rna-XM_016203354.1 21894419 7 13228842 13229140 Miniopterus natalensis 291302 CAG|GTAGAGAAAA...TTTGTTTTGTTT/TAGGTGCTAAAG...TTTAG|TTC 0 1 45.957
118585102 GT-AG 0 1.4428800349197366e-05 5438 rna-XM_016203354.1 21894419 8 13229247 13234684 Miniopterus natalensis 291302 CAG|GTATGGCTAC...ATTCCTTTTGCC/AGAAAGCTAATA...TACAG|ATG 1 1 52.926
118585103 GT-AG 0 1.6295615370235528e-05 3938 rna-XM_016203354.1 21894419 9 13234828 13238765 Miniopterus natalensis 291302 TTG|GTAAATCATG...TAATCTTTATTT/TTTATTTTAATC...TTCAG|GCT 0 1 62.327
118585104 GT-AG 0 1.000000099473604e-05 2857 rna-XM_016203354.1 21894419 10 13238876 13241732 Miniopterus natalensis 291302 CAA|GTGAGTGTTT...AGGTTCTTAGAG/TAGGTTCTTAGA...TTCAG|AGT 2 1 69.56
118585105 GT-AG 0 1.6873892710435636e-05 698 rna-XM_016203354.1 21894419 11 13241821 13242518 Miniopterus natalensis 291302 GGA|GTAAGTCAGG...ATCTTTTTATTT/TATCTTTTTATT...CATAG|AAT 0 1 75.345
118585106 GT-AG 0 0.0016124704011022 1908 rna-XM_016203354.1 21894419 12 13242603 13244510 Miniopterus natalensis 291302 GAG|GTATTACTTT...TCTGCTTTACCC/CTCTGCTTTACC...CCAAG|ACT 0 1 80.868
118585107 GT-AG 0 1.000000099473604e-05 866 rna-XM_016203354.1 21894419 13 13244667 13245532 Miniopterus natalensis 291302 GTG|GTGAGTAGAG...TTCCATTTGACT/TTCCATTTGACT...TGCAG|ACA 0 1 91.124

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