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)

10 rows where transcript_id = 76451

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, 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
346451 GT-AG 0 1.000000099473604e-05 2787 rna-XM_022233007.1 76451 2 1301708 1304494 Acanthaster planci 133434 AAG|GTAGGTGACT...CCATCCTTCATG/TTCATGTTTATG...TGTAG|GGT 2 1 48.667
346452 GT-AG 0 0.0005180307303113 4421 rna-XM_022233007.1 76451 3 1297122 1301542 Acanthaster planci 133434 CAG|GTACCGGTAC...AAACCATTAACA/TAACATGTCATC...GTTAG|AAA 2 1 52.739
346453 GT-AG 0 1.000000099473604e-05 931 rna-XM_022233007.1 76451 4 1295986 1296916 Acanthaster planci 133434 ACA|GTGAGTACAT...ATTTCCTTCATT/ATTTCCTTCATT...CACAG|GTT 0 1 57.799
346454 GT-AG 0 1.000000099473604e-05 785 rna-XM_022233007.1 76451 5 1295156 1295940 Acanthaster planci 133434 TTG|GTAAGTAATA...ATGCTTGTAATC/ATGCTTGTAATC...GCCAG|AGT 0 1 58.909
346455 GT-AG 0 1.000000099473604e-05 824 rna-XM_022233007.1 76451 6 1294251 1295074 Acanthaster planci 133434 GAG|GTAGGGTCCC...TGTACCTTAATT/TGTTCTCTTATC...ACCAG|GAA 0 1 60.908
346456 GT-AG 0 1.000000099473604e-05 1346 rna-XM_022233007.1 76451 7 1292809 1294154 Acanthaster planci 133434 ACA|GTAAGACAAG...GTTTTTTTACTC/TGTTTTTTTACT...TCTAG|ATA 0 1 63.277
346457 GT-AG 0 4.5520882712395214e-05 2521 rna-XM_022233007.1 76451 8 1290186 1292706 Acanthaster planci 133434 TCT|GTAAGTAATA...CTCTCTGTATCC/GTGTTTTGTATC...CCCAG|TCT 0 1 65.795
346458 GT-AG 0 1.000000099473604e-05 7193 rna-XM_022233007.1 76451 9 1282928 1290120 Acanthaster planci 133434 CAG|GTAAACGATA...AATTCCTCGATC/TTTTGTCTGACT...CATAG|TAA 2 1 67.399
346459 GT-AG 0 1.000000099473604e-05 2513 rna-XM_022233007.1 76451 10 1280366 1282878 Acanthaster planci 133434 AAG|GTAGAGATTG...TTTTTTTTCTCT/CTGAGTCTCATC...CACAG|GTA 0 1 68.608
348234 GT-AG 0 2.2285318971624783e-05 1099 rna-XM_022233007.1 76451 1 1306319 1307417 Acanthaster planci 133434 AGT|GTAAGTAGTA...AATATTTTATTT/TTATTTCTAACT...TACAG|ATC   0 6.713

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