Advertisement · 728 × 90

Posts by Diego Javier Zea

Preview
JuliaC: A New Tool for Building Julia Binaries - Event - JuliaHub Explore how JuliaC builds compact Julia binaries for embedded systems and real-time deployment, simplifying integration across engineering workflows.

Join us for a deep dive into JuliaC, the new toolchain for building executables and shared libraries from Julia code. Learn how to create compact binaries and integrate Julia with #C, #C++, #Python, and more.
juliahub.com/events/build...

#JuliaLang #EmbeddedSystems #TechnicalComputing

4 months ago 5 1 0 0
Post image

Scientific Modeling Cheatsheet: SciML has published a quick reference cheatsheet translating hundreds of functions between Julia, Python and MATLAB. Click here for more. sciml.github.io/Scientific_M...
#JuliaLang #SciML #Python #MATLAB #ScientificComputing #DataScience #Cheatsheet #Engineering

5 months ago 6 3 0 0

Julia v1.12.1 is out! 🎈🙃

#JuliaLang

6 months ago 7 2 0 0

#JuliaLang #Bioinformatics

6 months ago 1 0 0 0
Preview
GitHub - diegozea/MIToS.jl: A Julia package to analyze protein sequences, structures, and evolutionary information A Julia package to analyze protein sequences, structures, and evolutionary information - diegozea/MIToS.jl

🛡️ Confidence boost: refreshed benchmarks and tests now cover 96%+ of the code. Repo: github.com/diegozea/MIT...

6 months ago 0 0 1 0

🎨 Better structure viz: edit B-factors so you can color atoms/residues by any variable when plotting (e.g., quality, flexibility, or scores).

6 months ago 0 0 1 0

🗂️ Combining datasets is simpler: merge MSAs by matching sequence names automatically when pairings aren’t specified.

6 months ago 0 0 1 0

📈 MSA stats at a glance: estimate the effective number of sequences (down-weight redundancy) and quantify the share of “positive” residue pairs under your chosen matrix.

6 months ago 0 0 1 0

📊 Alignment quality: get the classic sum-of-pairs score for an MSA using a residue substitution matrix (BLOSUM62 by default), with consistent handling of gaps and unknowns.

6 months ago 1 0 1 0
Advertisement

🧬 Substitution matrices are now first-class: use built-ins like BLOSUM62 or bring your own from BioJulia’s BioAlignments.

6 months ago 0 0 1 0
Dragon showing the Julia colors and the text: MIToS.jl v3.2

Dragon showing the Julia colors and the text: MIToS.jl v3.2

🚀 MIToS.jl v3.2.0 brings cleaner substitution matrices, better MSA quality measures, easier MSA merges, and sturdier PDB handling — plus higher test coverage. 🧵

6 months ago 6 1 1 0
Video

Folddisco finds similar (dis)continuous 3D motifs in large protein structure databases. Its efficient index enables fast uncharacterized active site annotation, protein conformational state analysis and PPI interface comparison. 1/9🧶🧬
📄 www.biorxiv.org/content/10.1...
🌐 search.foldseek.com/folddisco

9 months ago 156 71 8 3

📢 Deadline Extended!
The application deadline for the PhD student position has been extended to July 4th. If you haven’t applied yet, there’s still time! 👇

9 months ago 2 0 0 0
Preview
ANR SPPICES Scoring and Predicting Protein Interactions and Conformations based on Evolutionary Signals

Join the MAGI team at @i2bcparissaclay.bsky.social as part of the ANR SPPICES project 🌶️
This position involves collaboration with members of the ML4NGP network on machine learning & non-globular proteins
Learn more 👉 sppices.notion.site

10 months ago 0 0 0 0
Portail Emploi CNRS - Offre d'emploi - Ingénieur bioinformaticien – Analyse computationnelle des protéines intrinsèquement désordonnées (H/F)

🚨 We're hiring a Bioinformatics Engineer!
🛠️ Develop #JuliaLang & Python tools to model structural and evolutionary features of IDPs
📅 Start: 1 Sept 2025
🎓 3+ years of higher education (Master’s or engineering diploma preferred)
👉 Apply now: emploi.cnrs.fr/Offres/CDD/U...

10 months ago 11 10 2 0
Preview
ANR SPPICES Scoring and Predicting Protein Interactions and Conformations based on Evolutionary Signals

Learn more about the SPPICES project (Scoring and Predicting Protein Interactions and Conformations based on Evolutionary Signals) here:
sppices.notion.site

10 months ago 2 0 0 0
Portail Emploi CNRS - Offre d'emploi - Doctorant en bioinformatique structurale et évolution des protéines (H/F)

Great news! I’m hiring a PhD student in structural #Bioinformatics to work on modeling protein conformations and interactions at @i2bcparissaclay.bsky.social
as part of the ANR SPPICES project! 🚀

📅 Start: 1 Sept 2025
⏳ Deadline: 23 June 2025
👉Apply now: emploi.cnrs.fr/Offres/Docto...

10 months ago 8 8 1 1

AlphaFold is amazing but gives you static structures 🧊

In a fantastic teamwork, @mcagiada.bsky.social and @emilthomasen.bsky.social developed AF2χ to generate conformational ensembles representing side-chain dynamics using AF2 💃

Code: github.com/KULL-Centre/...
Colab: github.com/matteo-cagia...

1 year ago 205 63 3 5
Advertisement

Book/Course

1 year ago 1 0 0 0

BioEmu is now easily accessible on Colab. Thank you @martinsteinegger.bsky.social and @jjimenezluna.bsky.social !!

@msftresearch.bsky.social

1 year ago 32 7 1 1

I have the same question. I haven't checked yet.

1 year ago 2 0 1 0

Yes, before, it was pretty cumbersome and slow. Now, it is the opposite experience 🙂

1 year ago 3 0 1 0
Screen capture of Google Colab showing their native version of Julia (1.10.8)

Screen capture of Google Colab showing their native version of Julia (1.10.8)

@googlecolab.bsky.social now has native support for #JuliaLang! 🎉 No special setup is needed anymore—start coding and sharing your @julialang.org projects! 🚀

1 year ago 34 10 1 0

Since you knew it, could it have helped more unconsciously, being there feeding the intuitions? 🤔

1 year ago 3 0 0 0
languages/fibonacci/julia/code.jl at bf71f98f0a823775c16fdb79f2445438f471edf6 · bddicken/languages Compare languages. Contribute to bddicken/languages development by creating an account on GitHub.

I am not sure that the Julia's Fibonacci implementation is optimal. Using Val is nice to showcase dispatch, but it hits compilation for every number, and it makes the code type unstable. Conversely, using Val should make the compiler memoize the result for each number. github.com/bddicken/lan...

1 year ago 5 0 0 0

🚨 I am super happy to announce that our analysis of how the structure of protein-RNA interfaces evolves is now published (early access) at @plos.bsky.social Computational Biology:
doi.org/10.1371/jour...
🧬🧶

1 year ago 76 25 1 2
Chai-1 is released under an Apache 2.0 License, which means it can be used for both academic and commerical purposes, including for drug discovery.

Chai-1 is released under an Apache 2.0 License, which means it can be used for both academic and commerical purposes, including for drug discovery.

Chai-1, the open source AF3 clone, is now available with an Apache 2 license github.com/chaidiscover...

1 year ago 76 22 0 2

Could you add me to the pack if structural bioinformatics and molecular evolution are welcome?

1 year ago 0 0 0 0
Advertisement

Thanks :)

1 year ago 1 0 0 0

Hi! I nominate myself :)

1 year ago 1 0 1 0