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

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: score, length, phase

id ▼ dinucleotide_pair is_minor score length transcript_id ordinal_index start end taxonomy_id scored_motifs phase in_cds relative_position
3822338 GT-AG 0 1.000000099473604e-05 49 rna-gnl|I4U23|004932-T1 720786 1 15046727 15046775 Adineta vaga 104782 CAG|GTAGAGAATA...TCACTCTTCTCG/TCTCGTTTGAGA...TTTAG|ATA 1 1 1.825
3822339 GT-AG 0 1.000000099473604e-05 54 rna-gnl|I4U23|004932-T1 720786 2 15046584 15046637 Adineta vaga 104782 CAA|GTTCGTACAA...TCTTCCTGAATT/CTCTTCCTGAAT...TTAAG|TAT 0 1 3.402
3822340 GT-AG 0 1.000000099473604e-05 55 rna-gnl|I4U23|004932-T1 720786 3 15046199 15046253 Adineta vaga 104782 GAT|GTGCGAAGAA...TTTGTTTTAAAC/AGAATTTTGATT...TTTAG|AAT 0 1 9.25
3822341 GT-AG 0 0.062782694399248 135 rna-gnl|I4U23|004932-T1 720786 4 15045922 15046056 Adineta vaga 104782 CAG|GTTTCTTTTT...CAATTTTTGTTT/TCTTCACTAATG...TATAG|TTA 1 1 11.767
3822342 GT-AG 0 1.000000099473604e-05 49 rna-gnl|I4U23|004932-T1 720786 5 15045400 15045448 Adineta vaga 104782 AAA|GTAAAATCTA...GAAGTTTTATAA/AAAAACTTTATT...TTTAG|TTA 0 1 20.149
3822343 GT-AG 0 0.0737227590638557 52 rna-gnl|I4U23|004932-T1 720786 6 15045246 15045297 Adineta vaga 104782 GAA|GTAATCTTTC...TTTCTTTTAATT/TTTCTTTTAATT...AATAG|GCA 0 1 21.956
3822344 GT-AG 0 0.0002902079451516 58 rna-gnl|I4U23|004932-T1 720786 7 15045135 15045192 Adineta vaga 104782 TGG|GTATGTCAAT...CATTTTTTGAAA/ACTTTTTTCATT...AATAG|AAC 2 1 22.896
3822345 GT-AG 0 1.000000099473604e-05 103 rna-gnl|I4U23|004932-T1 720786 8 15044177 15044279 Adineta vaga 104782 TTG|GTAAGAATTT...TCAGTTTTAACG/TCAGTTTTAACG...AATAG|GTA 2 1 38.047
3822346 GT-AG 0 3.22354992694613e-05 51 rna-gnl|I4U23|004932-T1 720786 9 15043761 15043811 Adineta vaga 104782 TGC|GTAAAAATTA...ACTTTTTTAAAT/TCTAATTTCATT...TTTAG|GTG 1 1 44.515
3822347 GT-AG 0 5.5194743353557786e-05 75 rna-gnl|I4U23|004932-T1 720786 10 15042234 15042308 Adineta vaga 104782 ATG|GTAATTTTCA...ATTAATTTGATT/ATTAATTTGATT...CATAG|CAT 1 1 70.246
3822348 GT-AG 0 1.7527546100229616e-05 54 rna-gnl|I4U23|004932-T1 720786 11 15042014 15042067 Adineta vaga 104782 ACG|GTAAGTTTCT...ATTATTTTCATT/ATTATTTTCATT...TTCAG|TGA 2 1 73.188
3822349 GT-AG 0 1.000000099473604e-05 139 rna-gnl|I4U23|004932-T1 720786 12 15040873 15041011 Adineta vaga 104782 CAG|GTAATGAAAA...TTTTTTTTCATT/TTTTTTTTCATT...TATAG|AAA 2 1 90.945

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