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

✎ 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
60947288 GT-AG 0 1.000000099473604e-05 103 rna-XM_028559175.1 11013791 1 4506609 4506711 Dendronephthya gigantea 151771 ATG|GTAAAGTGAA...TTGATATTAATT/TTGATATTAATT...AACAG|TAA 2 1 1.923
60947289 GT-AG 0 4.172999734101298e-05 368 rna-XM_028559175.1 11013791 2 4506769 4507136 Dendronephthya gigantea 151771 CAG|GTAGCAATAT...TTTTCATTTACT/TTAATTTTCATT...AATAG|AAA 2 1 3.403
60947290 GT-AG 0 0.0013558244426908 238 rna-XM_028559175.1 11013791 3 4507289 4507526 Dendronephthya gigantea 151771 AAG|GTTTGCTAAT...TCATTCTTAGCA/TTCATTCTTAGC...TTCAG|TTA 1 1 7.353
60947291 GT-AG 0 1.000000099473604e-05 215 rna-XM_028559175.1 11013791 4 4509831 4510045 Dendronephthya gigantea 151771 AGG|GTGAGTAAAT...ATTACATTAGCC/CCTATAATAACT...TTTAG|CGA 1 1 67.212
60947292 GT-AG 0 1.4957141852904432e-05 83 rna-XM_028559175.1 11013791 5 4510207 4510289 Dendronephthya gigantea 151771 AAG|GTTTATAATT...TAGTGTTTAACT/TAGTGTTTAACT...TTCAG|GGA 0 1 71.395
60947293 GT-AG 0 1.000000099473604e-05 111 rna-XM_028559175.1 11013791 6 4510371 4510481 Dendronephthya gigantea 151771 TTA|GTAAGGGACA...TTCTGCTAAACG/ATTCTGCTAAAC...TTCAG|CAC 0 1 73.5
60947294 GT-AG 0 1.000000099473604e-05 129 rna-XM_028559175.1 11013791 7 4510655 4510783 Dendronephthya gigantea 151771 CAG|GTACAATAAA...ATTTGCTTATAT/AATTTGCTTATA...TTCAG|AAA 2 1 77.994
60947295 GT-AG 0 1.000000099473604e-05 185 rna-XM_028559175.1 11013791 8 4510902 4511086 Dendronephthya gigantea 151771 AAG|GTATGGGCAT...TTTTTTTCAATC/TTTTTTTTCAAT...CTTAG|AAA 0 1 81.06
60947296 GT-AG 0 9.50397274629554e-05 84 rna-XM_028559175.1 11013791 9 4511153 4511236 Dendronephthya gigantea 151771 CAA|GTAAGCCTGC...CATTCATTAGCA/AGTATTCTCATT...TTCAG|CTC 0 1 82.775
60947297 GT-AG 0 1.000000099473604e-05 250 rna-XM_028559175.1 11013791 10 4511301 4511550 Dendronephthya gigantea 151771 CAG|GTTTTGAATT...TTTCTCTAAGAA/TTTTCTCTAAGA...AACAG|TAA 1 1 84.438
60947298 GT-AG 0 1.000000099473604e-05 120 rna-XM_028559175.1 11013791 11 4511653 4511772 Dendronephthya gigantea 151771 AAT|GTGAGTATAT...GATGTCTTGTTG/TGTTGTGTCAAA...TTTAG|GGA 1 1 87.088
60947299 GT-AG 0 1.000000099473604e-05 235 rna-XM_028559175.1 11013791 12 4511892 4512126 Dendronephthya gigantea 151771 CAG|GTGTGCACCC...ATTATCTTGGCC/GTGCTACTAATT...TCTAG|ATG 0 1 90.179

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