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

✎ 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
347012 GT-AG 0 1.000000099473604e-05 19525 rna-XM_022239420.1 76496 1 2997898 3017422 Acanthaster planci 133434 GAG|GTAATGCATG...TGCTCGTTAATT/GTTTTTCTGATT...TTCAG|GTT 2 1 1.898
347013 GT-AG 0 1.000000099473604e-05 980 rna-XM_022239420.1 76496 2 3017530 3018509 Acanthaster planci 133434 CGG|GTGAGAGAAG...GATGCCTTGAAC/GATGCCTTGAAC...CTCAG|GTG 1 1 6.852
347014 GT-AG 0 1.000000099473604e-05 2612 rna-XM_022239420.1 76496 3 3018596 3021207 Acanthaster planci 133434 GGG|GTGAGTTGCA...CTATTTTTATTC/TTTTTATTCACA...CTCAG|GAC 0 1 10.833
347015 GT-AG 0 1.000000099473604e-05 2945 rna-XM_022239420.1 76496 4 3021325 3024269 Acanthaster planci 133434 GAG|GTAAGACCTG...TTTTTCTTTTTT/TTTTTTGTAACC...TCCAG|TAC 0 1 16.25
347016 GT-AG 0 1.000000099473604e-05 4696 rna-XM_022239420.1 76496 5 3024414 3029109 Acanthaster planci 133434 CCG|GTAAGATGTG...TTTTTTTTTTTT/TGGTGAATCAAT...TCCAG|GAA 0 1 22.917
347017 GT-AG 0 0.0007531293105005 4080 rna-XM_022239420.1 76496 6 3029179 3033258 Acanthaster planci 133434 AAG|GTATGTTGCC...CTCTCCTTGTAT/TGTACTTTGAGT...TGCAG|GGT 0 1 26.111
347018 GT-AG 0 1.224922283767954e-05 947 rna-XM_022239420.1 76496 7 3033352 3034298 Acanthaster planci 133434 GAG|GTAAGCTGGC...CTTCTGTTGAAT/CTTCTGTTGAAT...CTCAG|GCT 0 1 30.417
347019 GT-AG 0 1.000000099473604e-05 704 rna-XM_022239420.1 76496 8 3034467 3035170 Acanthaster planci 133434 CAA|GTGAGTGATA...ACACGTTTAATC/ATTTGTCTTACC...CGCAG|ATT 0 1 38.194
347020 GT-AG 0 1.000000099473604e-05 1944 rna-XM_022239420.1 76496 9 3035270 3037213 Acanthaster planci 133434 GAG|GTAAGACCTT...ATTTTTTTCATT/ATTTTTTTCATT...TTCAG|AAG 0 1 42.778
347021 GT-AG 0 3.630631746665227e-05 3018 rna-XM_022239420.1 76496 10 3037301 3040318 Acanthaster planci 133434 CAG|GTAAACATCC...TGTTCCTTTTTT/CTTTTTTTTATG...TGCAG|TGG 0 1 46.806
347022 GT-AG 0 1.000000099473604e-05 768 rna-XM_022239420.1 76496 11 3040424 3041191 Acanthaster planci 133434 AAG|GTAAAGAAAA...TGTTTCATATCT/TTAGTAATAATT...TCCAG|GGT 0 1 51.667
347023 GT-AG 0 1.000000099473604e-05 339 rna-XM_022239420.1 76496 12 3041758 3042096 Acanthaster planci 133434 GAG|GTGGGCAGGC...TGTATCTTTTTT/TTTTTTGTGAAT...CGCAG|AGC 2 1 77.87
347024 GT-AG 0 1.000000099473604e-05 1159 rna-XM_022239420.1 76496 13 3042290 3043448 Acanthaster planci 133434 AAG|GTACAGAAGA...TTTTCTTTTTCT/ACAGCCCTAATT...TTCAG|GCA 0 1 86.806
347025 GT-AG 0 0.0015275324657961 488 rna-XM_022239420.1 76496 14 3043556 3044043 Acanthaster planci 133434 AGG|GTATGTCTCT...TAATCTTTCATT/TAATCTTTCATT...GCCAG|GTA 2 1 91.759

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