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)

13 rows where transcript_id = 37556885

✎ 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
207136016 GT-AG 0 1.000000099473604e-05 6140 rna-XM_026406736.1 37556885 1 3034479 3040618 Urocitellus parryii 9999 ATG|GTGAGTTGGT...TTATTTTTGTTT/TAAGTGCTGATA...TAAAG|GGG 0 1 0.216
207136017 GT-AG 0 1.000000099473604e-05 8696 rna-XM_026406736.1 37556885 2 3025696 3034391 Urocitellus parryii 9999 AGG|GTAAGTTATC...AAATTATTACCA/GAAATTATTACC...CACAG|TCC 0 1 6.494
207136018 GT-AG 0 0.0004396336788675 1095 rna-XM_026406736.1 37556885 3 3024516 3025610 Urocitellus parryii 9999 TAG|GTATGTCATT...TAAGCATTAATT/AACATGTTAATT...TGCAG|CTT 1 1 12.626
207136019 GT-AG 0 2.2345632430569703e-05 4629 rna-XM_026406736.1 37556885 4 3019844 3024472 Urocitellus parryii 9999 TAG|GTAAGTTTTT...TTTGTCTTTTTA/AGGGTTCTAATG...TTTAG|TTT 2 1 15.729
207136020 GT-AG 0 1.2697783715890432e-05 6523 rna-XM_026406736.1 37556885 5 3013255 3019777 Urocitellus parryii 9999 TGG|GTAAGTTCAA...AAAATTTTAATT/AAAATTTTAATT...TTCAG|GTT 2 1 20.491
207136021 GT-AG 0 0.0004383368349851 1198 rna-XM_026406736.1 37556885 6 3011976 3013173 Urocitellus parryii 9999 AAG|GTACATTTGT...AGTTCTATAATT/ATAGGACTTATT...TTTAG|TGC 2 1 26.335
207136022 GT-AG 0 1.000000099473604e-05 923 rna-XM_026406736.1 37556885 7 3011017 3011939 Urocitellus parryii 9999 CAC|GTGAGACTCC...AATATGTTACTG/GAATATGTTACT...TTTAG|GGG 2 1 28.932
207136023 GT-AG 0 0.0042356071879871 1939 rna-XM_026406736.1 37556885 8 3008983 3010921 Urocitellus parryii 9999 AAG|GTATGTTTTT...TTATTCTTCTAT/AAACAGTTTATT...TAAAG|CTG 1 1 35.786
207136024 GT-AG 0 1.000000099473604e-05 892 rna-XM_026406736.1 37556885 9 3008042 3008933 Urocitellus parryii 9999 AAG|GTAAGATGGC...AGGTTTTCATCA/ATTTTGCTAATG...CATAG|CTT 2 1 39.322
207136025 GT-AG 0 2.7712209235382257e-05 3008 rna-XM_026406736.1 37556885 10 3004914 3007921 Urocitellus parryii 9999 TAA|GTAAGTATTT...AATTTTTTTTCT/ATACATTTAAGA...TTCAG|TAA 2 1 47.98
207136026 GT-AG 0 1.000000099473604e-05 1366 rna-XM_026406736.1 37556885 11 3003445 3004810 Urocitellus parryii 9999 CAG|GTAAGGTTTT...CATATTTTATTT/TCATATTTTATT...CCCAG|ACA 0 1 55.411
207136027 GT-AG 0 1.000000099473604e-05 1399 rna-XM_026406736.1 37556885 12 3001998 3003396 Urocitellus parryii 9999 GAG|GTAAGATTGA...ACTCTCATAATC/ATAACTCTCATA...ATTAG|GTT 0 1 58.874
207136028 GT-AG 0 0.0119824674061363 5832 rna-XM_026406736.1 37556885 13 2996097 3001928 Urocitellus parryii 9999 TTG|GTATGTTTTC...GTTCTCTTATGA/ATAATTCTAAGT...TTTAG|GCT 0 1 63.853

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