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

✎ 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
346336 GT-AG 0 1.4153047560826849e-05 725 rna-XM_022249704.1 76444 2 2733114 2733838 Acanthaster planci 133434 CAG|GTACATGTAA...TTCACCTTCTCC/TATTTATTCACC...TGTAG|ATG 0 1 3.56
346337 GT-AG 0 1.000000099473604e-05 644 rna-XM_022249704.1 76444 3 2733977 2734620 Acanthaster planci 133434 CAG|GTTAGTCTTC...CACATCTTCCTC/CTGAGTTTCACA...TGTAG|GAT 0 1 6.502
346338 GT-AG 0 1.000000099473604e-05 404 rna-XM_022249704.1 76444 4 2734724 2735127 Acanthaster planci 133434 AAG|GTAAGGGCAG...ATGTGGTTATTT/CACATGTTCATG...CCCAG|GCG 1 1 8.698
346339 GT-AG 0 1.000000099473604e-05 272 rna-XM_022249704.1 76444 5 2735206 2735477 Acanthaster planci 133434 CAG|GTACGTAGAA...TTTTCCTGAGTG/CTAAAACTGATT...CCCAG|AAC 1 1 10.36
346340 GT-AG 0 0.0004321621033561 457 rna-XM_022249704.1 76444 6 2735587 2736043 Acanthaster planci 133434 AGT|GTAAGTCTCC...TTGTCTTTACCT/ATGTTTCTGACT...AACAG|GTT 2 1 12.684
346341 GT-AG 0 1.000000099473604e-05 555 rna-XM_022249704.1 76444 7 2736117 2736671 Acanthaster planci 133434 CGG|GTAAGAACTA...CCGTCATTGAGA/GTATTGCTGACA...GACAG|GAT 0 1 14.24
346342 GT-AG 0 1.000000099473604e-05 525 rna-XM_022249704.1 76444 8 2736749 2737273 Acanthaster planci 133434 TGG|GTAAGTCTAG...TAGGATTTGATG/GGAAAACTGATT...TGCAG|ACC 2 1 15.881
346343 GT-AG 0 1.000000099473604e-05 778 rna-XM_022249704.1 76444 9 2737347 2738124 Acanthaster planci 133434 AAG|GTCAGTTTCC...CATCCTCTAATA/CTAATAGTGATT...TTTAG|GTG 0 1 17.438
346344 GT-AG 0 1.000000099473604e-05 1280 rna-XM_022249704.1 76444 10 2738197 2739476 Acanthaster planci 133434 CCG|GTGAGTTCAG...TTTTTATTAACA/TTTAATTTCACT...TACAG|ATA 0 1 18.973
346345 GT-AG 0 1.000000099473604e-05 1834 rna-XM_022249704.1 76444 11 2739648 2741481 Acanthaster planci 133434 GAG|GTGTGTACTC...AATTCCTTTTTT/GTTGAACTAATT...ACCAG|TCT 0 1 22.618
346346 GT-AG 0 2.541965720145726e-05 139 rna-XM_022249704.1 76444 12 2742152 2742290 Acanthaster planci 133434 GAG|GTAAGTTGTG...TTACCTTTGACA/TTACCTTTGACA...TTCAG|GAG 1 1 36.9
348225 GT-AG 0 1.000000099473604e-05 4117 rna-XM_022249704.1 76444 1 2728911 2733027 Acanthaster planci 133434 GTG|GTGAGTATAG...TTGTTTTTACAT/TTTGTTTTTACA...CACAG|GTT   0 3.048

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