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

✎ 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
31463567 GT-AG 0 5.112949390181872e-05 5591 rna-XM_030944014.1 6092552 2 59929513 59935103 Camarhynchus parvulus 87175 AAG|GTAATTATCT...TTTTTCTTAAAT/TTTTTTTTCATT...TTCAG|AGT 0 1 1.806
31463568 GT-AG 0 0.0001333124947951 3469 rna-XM_030944014.1 6092552 3 59935221 59938689 Camarhynchus parvulus 87175 GAG|GTTTGCCATA...CTGTACTTGACT/CTTGTATTTATT...TACAG|ATT 0 1 3.781
31463569 GT-AG 0 4.2263365583380495e-05 1386 rna-XM_030944014.1 6092552 4 59938738 59940123 Camarhynchus parvulus 87175 CAG|GTACAGTATA...TGTTTTTTATTT/ATGTTTTTTATT...TTCAG|GAG 0 1 4.591
31463570 GT-AG 0 1.000000099473604e-05 846 rna-XM_030944014.1 6092552 5 59940259 59941104 Camarhynchus parvulus 87175 CAG|GTAAAATTTT...GTTTTCTTGTTG/AATCCCCTGAAG...TCTAG|AAT 0 1 6.87
31463571 GT-AG 0 3.662037655238297e-05 433 rna-XM_030944014.1 6092552 6 59941370 59941802 Camarhynchus parvulus 87175 CTG|GTAAGTTCTT...CTCTTTTTACCT/TCTCTTTTTACC...TTCAG|GTA 1 1 11.344
31463572 GT-AG 0 1.7107869294782466e-05 2155 rna-XM_030944014.1 6092552 7 59946460 59948614 Camarhynchus parvulus 87175 AAG|GTAATATTAA...TTTGTCTTAAAT/TTTTGTCTTAAA...TTTAG|CTC 2 1 89.956
31463573 GT-AG 0 1.000000099473604e-05 3787 rna-XM_030944014.1 6092552 8 59948771 59952557 Camarhynchus parvulus 87175 CAG|GTAATTATAA...TTGTTCTTTTCT/TTCTAGTTCAGC...GGCAG|TAA 2 1 92.589
31463574 GT-AG 0 1.000000099473604e-05 713 rna-XM_030944014.1 6092552 9 59952642 59953354 Camarhynchus parvulus 87175 CAG|GTTGGTTGAG...GTTTTCTTAATT/ATTGTATTCATA...TACAG|TGA 2 1 94.007
31463575 GT-AG 0 0.0002265362124676 1979 rna-XM_030944014.1 6092552 10 59953402 59955380 Camarhynchus parvulus 87175 AAG|GTAACGTCGG...GATTTTTTGAAA/TTTATATTTATT...GTTAG|TTT 1 1 94.801
31463576 GT-AG 0 1.286029849242866e-05 4554 rna-XM_030944014.1 6092552 11 59955542 59960095 Camarhynchus parvulus 87175 TTT|GTAAGTACTC...GTTCCCCTGTTT/GTCCAAGTCAAA...TTTAG|CTT 0 1 97.519
31473506 GT-AG 0 1.000000099473604e-05 8718 rna-XM_030944014.1 6092552 1 59920687 59929404 Camarhynchus parvulus 87175 CAG|GTACGGAGCG...TAAATATTAGTG/AACGTAATCACA...TGCAG|GCA   0 0.793

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