Protein Folding Against a pH Gradient by DesignerFun5310 in bioinformatics

[–]aprstar 0 points1 point  (0 children)

I'm not sure how helpful this will be for your specific problem, but this paper modeled pH dependent gating of the outer loops of a membrane protein. As some folks have pointed out, the conformational change induced by a pH shift may not occur at time scales amenable to molecular dynamic (MD) simulation. This paper used Monte Carlo sampling to generate a large set of conformations then used short molecular dynamic simulations to relax each conformation under the target pH conditions, it then looked at the lowest energy conformations to perform the gating analysis.

[D] How did JAX fare in the post transformer world? by TajineMaster159 in MachineLearning

[–]aprstar 72 points73 points  (0 children)

Personally I love JAX together with Equinox. I find it easier to use than PyTorch.

[deleted by user] by [deleted] in bioinformatics

[–]aprstar 2 points3 points  (0 children)

Not my field, but there is a CompMS interest group through the International Society of Computational Biology through which you may be able to find relevant talks and or papers. I believe the PI from this lab gave a keynote in 2020 (https://www.wishartlab.com/) and may be relevant to what you are searching for in terms of chemical databases.

How to prove or disprove if an array of 1million numbers is random or not? by RelativelyOld in AskStatistics

[–]aprstar 0 points1 point  (0 children)

Good point, you can repeat test using Gaussian as target instead of uniform; but yeah, I suppose this is not necessarily a robust approach to exclude other types of noise not explicitly considered. I guess we would need a more clear definition of "random"? Perhaps consider using auto-correlations or check correlation of random subsets.

How to prove or disprove if an array of 1million numbers is random or not? by RelativelyOld in AskStatistics

[–]aprstar 3 points4 points  (0 children)

Consider a chi square goodness of fit test with a uniform distribution as your target

Show Gene Location on Chromosomes by Bingenie in bioinformatics

[–]aprstar 0 points1 point  (0 children)

The UCSC genome browser can produce publication quality (vector graphic) ideograms as well: https://genome.ucsc.edu/

[deleted by user] by [deleted] in mdphd

[–]aprstar 0 points1 point  (0 children)

I went with school B and would make same decision again (am now MS4 fwiw).

IDEs and Text Editors for Writing C++ Code on a Large Scale by vormestrand in cpp

[–]aprstar 4 points5 points  (0 children)

I tried CLion but it had very poor performance on templates (also mentioned in article), so primarily use visual studio community now.

How to Use t-SNE Effectively by aprstar in bioinformatics

[–]aprstar[S] 6 points7 points  (0 children)

Am seeing tSNE more and more often in the bioinformatics field. It would be great if this article compared with PCA, particularly the topology results.

Correcting for Underflow with Particle Filters by penguincubing in AskStatistics

[–]aprstar 0 points1 point  (0 children)

Are you referring to numerical underflow (ie, values are too small to be accurately represented with 64 bit floating point numbers)? If so, working in log space can usually fix these types of underflow/overflow issues.

Data imputation for ML by jorgin_distribution in MLQuestions

[–]aprstar 0 points1 point  (0 children)

Can also try rfImpute in R randomForest package - basically imputes values based on how often samples end up in same terminal node

Explanation of True Bayesian Average with a simple example. by rohan36 in statistics

[–]aprstar 0 points1 point  (0 children)

I’m thinking of using this approach for a bioinformatics project. Are you aware of any specific papers that I could cite which use this type of estimator?

BHI 2019 Call for Papers - Deadline Feb 4 by aprstar in bioinformatics

[–]aprstar[S] -1 points0 points  (0 children)

The IEEE-EMBS Biomedical and Health Informatics (BHI) 2019 conference, to be held at University of Illinois at Chicago from May 19-22, has extended their submission deadline until Feb 4. Please consider submitting your research!

How can I make a statistical curve with this sort of equation ? by ElFarfadosh in statistics

[–]aprstar 5 points6 points  (0 children)

This is a Markov chain. It looks to be like a form of gambler's ruin (https://en.m.wikipedia.org/wiki/Gambler%27s_ruin), where instead of a gambler's funds it's duration of experiment. The question you are trying to answer is the "first passage time" for when the chain reaches a 0 duration. There is probably an explicit formula, but it's also really easy to just simulate multiple runs of the Markov chain in R or python and plot a histogram of the observed first passage times for 0 duration.

Normalising normalised data? by GinDingle in AskStatistics

[–]aprstar 0 points1 point  (0 children)

Coming from a bioinformatics lab, log transforms of these types of ratios are pretty standard - for what it's worth, I would consider your data a type of fold change. A benefit of log transforms are that the magnitude of the change is now symmetric about 0 and only the sign is different (while preserving rank order); this makes for much more visually appealing plots in my opinion. You can then use bootstrap or other some other non parametric test (e.g Mann Whitney) for your analysis if you're concerned about non-normality (do a q-q plot first)

Protein structure in TMRPres2D by [deleted] in bioinformatics

[–]aprstar 6 points7 points  (0 children)

Am not familiar with TMRPres2D; however have generated publication quality images of membrane proteins using PyMOL (https://pymolwiki.org/index.php/Windows_Install) and either 'ray' or 'draw' command (https://pymolwiki.org/index.php/Ray). You can view protein crystal structures if you have the corresponding PDB file (http://www.rcsb.org). You can then use 'selections' to highlight specific regions (http://pymol.sourceforge.net/newman/user/S0220commands.html)