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

✎ 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
130299270 GT-AG 0 1.000000099473604e-05 4919 rna-gnl|WGS:WBNA|NOTNIG_R07191_mrna 23959213 1 10421417 10426335 Nothocercus nigrocapillus 1977171 CAG|GTAATGGTGA...GATTTTTTAATT/GATTTTTTAATT...CAAAG|CAC 0 1 11.751
130299271 GT-AG 0 1.5497551401393262e-05 2415 rna-gnl|WGS:WBNA|NOTNIG_R07191_mrna 23959213 2 10426381 10428795 Nothocercus nigrocapillus 1977171 CTG|GTAGATATCA...TTTTTTTTGTTC/TTTTTGTTCATT...AACAG|GTG 0 1 13.514
130299272 GT-AG 0 5.496901084977337e-05 30330 rna-gnl|WGS:WBNA|NOTNIG_R07191_mrna 23959213 3 10428958 10459287 Nothocercus nigrocapillus 1977171 GAG|GTAACTGCTT...TTTCCCTTGTGT/ACAGGATTGATG...GGCAG|GTT 0 1 19.859
130299273 GT-AG 0 1.000000099473604e-05 4756 rna-gnl|WGS:WBNA|NOTNIG_R07191_mrna 23959213 4 10459727 10464482 Nothocercus nigrocapillus 1977171 CAG|GTAGAGTGAT...ATCTCCTTATCC/TATCTCCTTATC...CTTAG|GTA 1 1 37.054
130299274 GT-AG 0 0.0001978800943064 29547 rna-gnl|WGS:WBNA|NOTNIG_R07191_mrna 23959213 5 10464867 10494413 Nothocercus nigrocapillus 1977171 GAG|GTAAGCTCTG...TTTTTTTTAAAA/TTTTTTTTCATT...TGCAG|AGG 1 1 52.096
130299275 GT-AG 0 0.4249750329213341 6991 rna-gnl|WGS:WBNA|NOTNIG_R07191_mrna 23959213 6 10494618 10501608 Nothocercus nigrocapillus 1977171 TAG|GTATCGTATA...GTTACCTTGAAG/CTTTCATTTATT...TCTAG|ACT 1 1 60.086
130299276 GT-AG 0 0.0005879118892293 69358 rna-gnl|WGS:WBNA|NOTNIG_R07191_mrna 23959213 7 10501636 10570993 Nothocercus nigrocapillus 1977171 CCA|GTAAGTTTTC...TCATGCTTATCA/CTGAGTTTAACT...CCCAG|GCA 1 1 61.144
130299277 GT-AG 0 1.000000099473604e-05 6034 rna-gnl|WGS:WBNA|NOTNIG_R07191_mrna 23959213 8 10571114 10577147 Nothocercus nigrocapillus 1977171 AGG|GTGAGTTCGA...TCCTCCTTGTTC/TAATTGCTGATC...TTCAG|GCA 1 1 65.844
130299278 GT-AG 0 1.000000099473604e-05 1343 rna-gnl|WGS:WBNA|NOTNIG_R07191_mrna 23959213 9 10577530 10578872 Nothocercus nigrocapillus 1977171 GGG|GTGAGTGAGC...CAGTTCTTACAT/GTTCTTCTTATG...TTCAG|GTA 2 1 80.807
130299279 GT-AG 0 0.0004303775507129 789 rna-gnl|WGS:WBNA|NOTNIG_R07191_mrna 23959213 10 10579064 10579852 Nothocercus nigrocapillus 1977171 AAG|GTACATTCTA...TTTTCCTTTTTA/TTCCTTTTTACT...TTCAG|GTG 1 1 88.288
130299280 GT-AG 0 1.000000099473604e-05 13178 rna-gnl|WGS:WBNA|NOTNIG_R07191_mrna 23959213 11 10580027 10593204 Nothocercus nigrocapillus 1977171 AAG|GTACGACGGC...GTTTTCTTGTCA/ATTTGTTTCATG...TCTAG|GAC 1 1 95.104

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