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)

14 rows where transcript_id = 670714

✎ 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
3637027 GT-AG 0 1.000000099473604e-05 57 rna-BJG266_LOCUS58 670714 1 160282 160338 Adineta steineri 433720 CCA|GTAAGAGTTA...TTTTTGTTAAAT/TTTTTGTTAAAT...CTTAG|GCA 0 1 8.945
3637028 GT-AG 0 0.0002779022173839 58 rna-BJG266_LOCUS58 670714 2 160522 160579 Adineta steineri 433720 AAT|GTTTGTTATA...GTTTTTCTGATC/GTTTTTCTGATC...AATAG|GCA 0 1 15.94
3637029 GT-AG 0 3.975966860062304e-05 192 rna-BJG266_LOCUS58 670714 3 160751 160942 Adineta steineri 433720 CAA|GTACTAAACT...AATATCTTAACG/CAGTTGCTTATA...TTTAG|GGA 0 1 22.477
3637030 GT-AG 0 0.0007338789229407 56 rna-BJG266_LOCUS58 670714 4 161078 161133 Adineta steineri 433720 GAA|GTAAATTTAT...GAAATTTTGATT/GAAATTTTGATT...CATAG|ATC 0 1 27.638
3637031 GT-AG 0 1.000000099473604e-05 49 rna-BJG266_LOCUS58 670714 5 161247 161295 Adineta steineri 433720 TCG|GTAAGAAACA...ATTCTATTAAAA/TTAAATTTAAAT...TATAG|AGT 2 1 31.957
3637032 GT-AG 0 1.000000099473604e-05 57 rna-BJG266_LOCUS58 670714 6 161388 161444 Adineta steineri 433720 TTG|GTAAGAATAC...ATTTTATTAATT/ATTTTATTAATT...GTTAG|GTA 1 1 35.474
3637033 GT-AG 0 0.0001833219692505 50 rna-BJG266_LOCUS58 670714 7 161554 161603 Adineta steineri 433720 AAA|GTAAGTTTTT...AAACATTTAACA/AAACATTTAACA...TTAAG|AGG 2 1 39.641
3637034 GT-AG 0 0.0147051106981154 69 rna-BJG266_LOCUS58 670714 8 161821 161889 Adineta steineri 433720 ACA|GTATGATATC...GTTTTCTTATTA/TGTTTTCTTATT...TTCAG|GTA 0 1 47.936
3637035 GT-AG 0 3.4123092815619324e-05 56 rna-BJG266_LOCUS58 670714 9 162283 162338 Adineta steineri 433720 AAG|GTATATGAAT...TTGTTTTTGTAT/AAATATATGATA...TTTAG|ATT 0 1 62.959
3637036 GT-AG 0 0.0171894908890526 55 rna-BJG266_LOCUS58 670714 10 162399 162453 Adineta steineri 433720 GAA|GTTTGTTTTA...ATTTTTTTAAAT/ATTTTTTTAAAT...ATTAG|ATT 0 1 65.252
3637037 GT-AG 0 1.000000099473604e-05 63 rna-BJG266_LOCUS58 670714 11 162612 162674 Adineta steineri 433720 AAG|GTAAACAAAA...CTTTTCCTATTT/TATTTATTTATA...AAAAG|ATG 2 1 71.292
3637038 GT-AG 0 1.000000099473604e-05 56 rna-BJG266_LOCUS58 670714 12 162856 162911 Adineta steineri 433720 AAA|GTAAGAAAAA...ATTTCTTTATTC/TCTTTATTCATA...TTTAG|AGT 0 1 78.211
3637039 GT-AG 0 0.0215521137167307 61 rna-BJG266_LOCUS58 670714 13 163112 163172 Adineta steineri 433720 TAA|GTATGTTACA...ATTTTCTTTTTT/GCATCTTTCAAA...CGTAG|ATG 2 1 85.856
3637040 GT-AG 0 1.000000099473604e-05 46 rna-BJG266_LOCUS58 670714 14 163282 163327 Adineta steineri 433720 AAG|GTAGAAAAAA...ACAATATTAAAT/ATTAAATTGATA...TTTAG|GAG 0 1 90.023

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