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

✎ 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
207136112 GT-AG 0 0.0034701936060887 39588 rna-XM_026391012.1 37556903 2 6593520 6633107 Urocitellus parryii 9999 TGG|GTATGTATCA...GAGCTTTTAAAA/AAAAAGTTCATT...TAAAG|CTG 2 1 25.31
207136113 GT-AG 0 1.000000099473604e-05 58166 rna-XM_026391012.1 37556903 3 6535277 6593442 Urocitellus parryii 9999 AAT|GTAAGAAAAT...CATACGTTAACA/CATACGTTAACA...TTCAG|GGG 1 1 30.926
207136114 GT-AG 0 1.000000099473604e-05 41673 rna-XM_026391012.1 37556903 4 6493509 6535181 Urocitellus parryii 9999 CAT|GTGAGTACTT...ATCGTTTTCACC/ATCGTTTTCACC...TGCAG|AAC 0 1 37.856
207136115 GT-AG 0 1.000000099473604e-05 17510 rna-XM_026391012.1 37556903 5 6475804 6493313 Urocitellus parryii 9999 TGG|GTAAGGTGTT...AAAATCTTATAT/AAAAATCTTATA...TACAG|ACT 0 1 52.079
207136116 GT-AG 0 1.000000099473604e-05 71143 rna-XM_026391012.1 37556903 6 6404586 6475728 Urocitellus parryii 9999 AAG|GTAAAAATAT...GTCTTTTTCACT/GTCTTTTTCACT...CTAAG|GAT 0 1 57.549
207136117 GT-AG 0 1.6335181744444752e-05 90707 rna-XM_026391012.1 37556903 7 6313769 6404475 Urocitellus parryii 9999 ACA|GTAAGTGTCA...GTACTCTTTTCT/ATGTCTTGTACT...TTCAG|TGC 2 1 65.573
207136118 GT-AG 0 1.000000099473604e-05 3296 rna-XM_026391012.1 37556903 8 6310373 6313668 Urocitellus parryii 9999 AAG|GTAAAAAAGC...TAATTCTCAGTT/TCTGTGCTAATT...TCCAG|GTG 0 1 72.867
207136119 GT-AG 0 4.024778050901872e-05 3129 rna-XM_026391012.1 37556903 9 6307173 6310301 Urocitellus parryii 9999 CAC|GTAAGTTCTG...TCTTCTATACCA/CATATATTTATG...CTTAG|AGG 2 1 78.045
207136120 GT-AG 0 1.000000099473604e-05 49133 rna-XM_026391012.1 37556903 10 6257957 6307089 Urocitellus parryii 9999 ACA|GTGAGTATAC...GTGTTTATATCT/TTATATCTAACT...TCCAG|TTG 1 1 84.099
207136121 GT-AG 0 1.000000099473604e-05 28879 rna-XM_026391012.1 37556903 11 6228924 6257802 Urocitellus parryii 9999 AAA|GTAAGTGAAT...TCTCCCTTCTTT/GTTGTACTAACC...ACCAG|GGC 2 1 95.332
207136422 GT-AG 0 7.316229831169199e-05 3391 rna-XM_026391012.1 37556903 1 6633260 6636650 Urocitellus parryii 9999 CAG|GTACCAGGAC...TTGTTGTTGACT/TTGTTGTTGACT...TTCAG|TGG   0 15.974

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