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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: dinucleotide_pair, score, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
149878305 GC-AG 0 1.000000099473604e-05 135 rna-XM_033974500.1 26973299 1 10571463 10571597 Periophthalmus magnuspinnatus 409849 AGA|GCAGGACTGG...GTGTACTTAGGT/TGTGTACTTAGG...CAGAG|CAT 2 1 7.023
149878306 GT-AG 0 0.0005875183191566 557 rna-XM_033974500.1 26973299 2 10570729 10571285 Periophthalmus magnuspinnatus 409849 CAG|GTATAGAATT...TATACCTTAATT/TATACCTTAATT...TGCAG|ATG 2 1 10.734
149878307 GT-AG 0 0.0001046737554384 3461 rna-XM_033974500.1 26973299 3 10567067 10570527 Periophthalmus magnuspinnatus 409849 AAA|GTATGTGCCA...GTATGTTTACTG/TTGTGTTTCATC...TACAG|TCC 2 1 14.948
149878308 GT-AG 0 0.022517901181933 768 rna-XM_033974500.1 26973299 4 10566057 10566824 Periophthalmus magnuspinnatus 409849 CTG|GTATTTTATC...AGATTTTTAATA/ATCTATTTGACT...TATAG|GTA 1 1 20.021
149878309 GT-AG 0 1.000000099473604e-05 59 rna-XM_033974500.1 26973299 5 10565708 10565766 Periophthalmus magnuspinnatus 409849 ATG|GTAAGTAAAG...ATTGTTTTATTT/TATATTTTCATT...TCTAG|ACT 0 1 26.101
149878310 GT-AG 0 1.000000099473604e-05 309 rna-XM_033974500.1 26973299 6 10565152 10565460 Periophthalmus magnuspinnatus 409849 AAG|GTAATACAAT...AGTATTTTAATC/AGTATTTTAATC...AACAG|ACC 1 1 31.279
149878311 GT-AG 0 1.000000099473604e-05 77 rna-XM_033974500.1 26973299 7 10564893 10564969 Periophthalmus magnuspinnatus 409849 TCG|GTAAGATGAA...GTTATTTTAAAT/TTTTTTTTCAGT...TTTAG|CTA 0 1 35.094
149878312 GT-AG 0 5.604629665168545e-05 114 rna-XM_033974500.1 26973299 8 10564632 10564745 Periophthalmus magnuspinnatus 409849 TTG|GTAAACAATT...ATATCCTCATCA/TATATCCTCATC...TCCAG|ATC 0 1 38.176
149878313 GT-AG 0 8.005264047393307e-05 2654 rna-XM_033974500.1 26973299 9 10561808 10564461 Periophthalmus magnuspinnatus 409849 CAG|GTATTACTTT...ACATTTTCAACT/TTGGTATTTACA...TCCAG|GTT 2 1 41.74
149878314 GT-AG 0 1.000000099473604e-05 494 rna-XM_033974500.1 26973299 10 10559296 10559789 Periophthalmus magnuspinnatus 409849 CAA|GTAAGTAAAA...AAAGTCATAATT/TATAAAGTCATA...TTTAG|TAT 1 1 84.046
149878315 GT-AG 0 1.000000099473604e-05 157 rna-XM_033974500.1 26973299 11 10559042 10559198 Periophthalmus magnuspinnatus 409849 CAA|GTGAGTAGCC...TTTGTGTTAATG/ATCTGTCTCATC...TGTAG|GTT 2 1 86.08
149878316 GT-AG 0 1.000000099473604e-05 159 rna-XM_033974500.1 26973299 12 10558592 10558750 Periophthalmus magnuspinnatus 409849 AAG|GTACGTGTGT...GTAACTTTTATG/ATAAATGTAACT...TACAG|GTC 2 1 92.18

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