HackerTrans
TopNewTrendsCommentsPastAskShowJobs

radus

no profile record

Submissions

[untitled]

1 points·by radus·il y a 6 mois·0 comments

Yet another redundant workflow engine

github.com
2 points·by radus·il y a 8 mois·0 comments

The FAIR Guiding Principles for scientific data management and stewardship

nature.com
1 points·by radus·il y a 9 mois·0 comments

comments

radus
·il y a 4 mois·discuss
It's simple, just tell it not to hallucinate.
radus
·il y a 7 mois·discuss
Okay, but why?
radus
·il y a 7 mois·discuss
I'm working on adding features to the snakemake aws batch executor plugin. The existing plugin supports execution on AWS Batch by dynamically creating job definitions based on rule resource configuration, but was missing support for features like using different containers for different rules, consumable resources, secrets, etc. Two approaches:

1) https://github.com/radusuciu/snakemake-executor-plugin-aws-b... (my fork). Just add the features to the batch job building code 2) https://github.com/radusuciu/snakemake-executor-plugin-aws-b.... This is more experimental and not yet fully working. I wanted to try a few things. a) can we rely on existing job definitions (managed through IaC instead). b) can we implement a fire-and-forget model where the main snakemake process runs on Batch as well? c) Can we slim down the snakemake container by stripping off unnecessary features.
radus
·il y a 7 mois·discuss
Polars has a much more consistent API, give it a shot.

Regarding your plotting question: use seaborn when you can, but you’ll still need to know matplotlib.
radus
·il y a 4 ans·discuss
> I program the happy path then write tests and use them to help uncover edge cases.

This approach resonates with me as well. I would add that writing tests when investigating bugs or deviations from expected behavior is also useful.
radus
·il y a 4 ans·discuss
“Please extract this to a separate function”