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

✎ 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
347175 GT-AG 0 0.0055663424575632 688 rna-XM_022245391.1 76507 1 266307 266994 Acanthaster planci 133434 GAG|GTATAATTTC...TTTTCCTTTTTC/ATTTGGCTCAAG...TTAAG|TTC 2 1 4.115
347176 GT-AG 0 0.0012150687485368 173 rna-XM_022245391.1 76507 2 267247 267419 Acanthaster planci 133434 TTG|GTAAGCTTTG...TTTTCATTACTT/AAATTTTTCATT...CTCAG|TGG 2 1 17.078
347177 GT-AG 0 1.000000099473604e-05 293 rna-XM_022245391.1 76507 3 267510 267802 Acanthaster planci 133434 GGG|GTAAGAATCT...GAGTTTGTAGTA/TCAGGTTTGAAG...CATAG|GAA 2 1 21.708
347178 GT-AG 0 0.0001274778551844 182 rna-XM_022245391.1 76507 4 267892 268073 Acanthaster planci 133434 CCA|GTAAGTATTT...ATCATTTTATTC/AATCATTTTATT...TCCAG|ATT 1 1 26.286
347179 GT-AG 0 1.000000099473604e-05 415 rna-XM_022245391.1 76507 5 268262 268676 Acanthaster planci 133434 ATG|GTAAGACAAG...GTATGCTTGTAT/GAGTGATTGAAC...TCCAG|ATG 0 1 35.957
347180 GT-AG 0 1.000000099473604e-05 188 rna-XM_022245391.1 76507 6 268770 268957 Acanthaster planci 133434 CAG|GTCAGTGTCC...CTGATCTTATCA/CATTTACTCATG...TGTAG|GAT 0 1 40.741
347181 GT-AG 0 1.000000099473604e-05 219 rna-XM_022245391.1 76507 7 269064 269282 Acanthaster planci 133434 ATG|GTGAGCACAA...GATACCATAATG/GATACCATAATG...TACAG|GAA 1 1 46.193
347182 GT-AG 0 1.000000099473604e-05 133 rna-XM_022245391.1 76507 8 269380 269512 Acanthaster planci 133434 GAA|GTAAGTAAAA...ATGTCCTTCTCT/TCCTTTCTAAAT...CCCAG|TGA 2 1 51.183
347183 GT-AG 0 1.000000099473604e-05 283 rna-XM_022245391.1 76507 9 269725 270007 Acanthaster planci 133434 GAG|GTAGGTAGAG...TTTAACTTGCCC/AGTAAAGTTACA...TATAG|CTC 1 1 62.088
347184 GT-AG 0 1.000000099473604e-05 404 rna-XM_022245391.1 76507 10 270176 270579 Acanthaster planci 133434 TAG|GTAGGAGCTG...ACTGCCGTGACT/TACAAATTGACT...TTCAG|GTA 1 1 70.73
347185 GT-AG 0 1.000000099473604e-05 176 rna-XM_022245391.1 76507 11 270774 270949 Acanthaster planci 133434 CGG|GTGAGTATCC...TACATCTGGAAT/CAGAAGTTGATG...CTCAG|GCT 0 1 80.71
347186 GT-AG 0 1.000000099473604e-05 140 rna-XM_022245391.1 76507 12 271043 271182 Acanthaster planci 133434 AAG|GTAAGACAGT...TGGTTCTTATTG/CTGGTTCTTATT...CATAG|ATT 0 1 85.494
347187 GT-AG 0 1.000000099473604e-05 321 rna-XM_022245391.1 76507 13 271282 271602 Acanthaster planci 133434 ACG|GTAAGTCTTG...CGAATTTTGTCC/CTATTTGTCATT...GTCAG|GTT 0 1 90.586

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