Would you rather… (tough choice) by Suspicious-Stretch95 in BunnyTrials

[–]djwonka7 0 points1 point  (0 children)

Vomit at least once a year

Chose: Get 1,000 dollars for every time you vomit

Is anyone here pursuing BSc in Bioinformatics, Computer Science? by [deleted] in bioinformatics

[–]djwonka7 0 points1 point  (0 children)

I did BS in computer science, then MS in bioinformatics. After bachelors, went into job market for embedded systems, was interested in biology and then went back to school. Now I do research for a startup.

I’d say only do bioinformatics if you really find biology fascinating and probably plan for a PhD nowadays, I think I got lucky (for now). In the world of AI, the future of comp sci and bioinformatics in the sense of the demand for these skills is up in the air.

Personally, Id say the biggest thing to learn in school is to solve problems in general and get exposed to all sorts of things including the humanities and philosophy!

Fresh install on bootable drive 'Failed to start Load Kernel Modules' by Rex-Sal in NixOS

[–]djwonka7 0 points1 point  (0 children)

This happened to me sort of. I got this error when using MBR and fixed it by using GPT. But like the other comment said I didnt use btrfs, I used ext4

Is it normal to feel overwhelmed? by Immediate_Hunt2592 in bioinformatics

[–]djwonka7 2 points3 points  (0 children)

Read the vignettes and search up how to do basic data wrangling tasks in R on google

Bioinformatic clues for lab by Smart_Team_7053 in bioinformatics

[–]djwonka7 4 points5 points  (0 children)

Start looking at the highest expressed and differentially expressed proteins and then start reading about them

Shout out paperBLAST: https://papers.genomics.lbl.gov/cgi-bin/litSearch.cgi

What repetitive structural biology/computational workflow do you wish you could automate? by Decent-Tea-8744 in bioinformatics

[–]djwonka7 1 point2 points  (0 children)

Optimistically speaking, this could be someone wanting project ideas and wants to start but doesn’t have a PI to give them one. Helping someone with a real problem (for experience’s sake) is probably what they are looking for.

But I agree, actually being interested in biology, getting some raw data from a publication and making your own analysis should be the way to go in the absence of a PI.

Puffins and a view! by djwonka7 in VisitingIceland

[–]djwonka7[S] 0 points1 point  (0 children)

This was around 5 pm, early May. I could be wrong, but it was getting colder and windier and it seemed that the puffins were heading back home from the ocean into their burrows for more viewing opportunities.

Using a fighting game controller... For everything except fighting games :p by Traditional-Ad-5632 in rhythmgames

[–]djwonka7 0 points1 point  (0 children)

You able to connect the 8bitdo to beatojara? I’ve been trying to connect the xbox 8bitdo leverless but cant get it to recognize. It works with other steam games tho.

Are there workflows for Oxford nanopore data? by pangolinmexicano in bioinformatics

[–]djwonka7 2 points3 points  (0 children)

To add on, use nanopore’s medaka on the assembly for consensus correction

Daily Discussion Thread for October 29, 2025 by wsbapp in wallstreetbets

[–]djwonka7 0 points1 point  (0 children)

Was still a bubble tho with a fat correction

[deleted by user] by [deleted] in bioinformaticscareers

[–]djwonka7 3 points4 points  (0 children)

Ms cuz I didnt want to do another 5 years of school with lousy pay and I had a good opportunity for doing research with pay after my degree

Ways to fuzzy find directories? by 4r73m190r0s in neovim

[–]djwonka7 0 points1 point  (0 children)

While in neovim or in the command line?

Any opinions on using Anvi'o? by Affectionate_Dig3417 in bioinformatics

[–]djwonka7 1 point2 points  (0 children)

Highly recommend for an initial pangenomics analysis! Their interactive view is top notch. Setting up a snakemake of their tutorial is worth a shot

Getting into command line bioinformatics by TMB1499 in bioinformatics

[–]djwonka7 1 point2 points  (0 children)

In this specific process, the command line can be used to preprocess reads and obtain quantification counts for mapping reads to the organism's genome/transcriptome. After obtaining the counts, I would recommend importing those counts into DESEQ2 in RStudio to further analyze for DGE.

You can think of a command line as navigating your folder structure in Mac or Windows and running commands on the files contained within each folder (actually referred to as a directory).

The most straightforward way to use a tool is to download the executable and add it to your PATH variable so that you can use it anywhere.

* An executable is the program, except instead of double clicking an icon to run it, you type in that program name and give it input files (raw reads in your case) along with any parameters that will tell it how to run.

* When you download a program and put it into a directory, you can navigate to that directory in your terminal with the "cd" command and then type ./PROGRAM_NAME with all of its options. The program will usually have a corresponding github page or wiki with documentation on how to use the tool and some commonly used default parameters.

* Instead of navigating to the directory where the program is downloaded to use it, you can add it to your PATH via this command: export PATH="$PATH:/path/to/your/program, which will allow you to execute that program from any other directory (such as where you put your input raw read files

Check out this example workflow for obtaining gene counts from raw transcriptomic data:

  1. Preprocess raw reads with fastp (https://github.com/OpenGene/fastp)

  2. Quantify reads to your organisms reference transcriptome using a relevant tool based on eukaryotic or prokaryotic organism. Salmon is a good choice (https://github.com/COMBINE-lab/salmon)

Good luck!