HackerTrans
TopNewTrendsCommentsPastAskShowJobs

radus

no profile record

Submissions

[untitled]

1 points·by radus·6 месяцев назад·0 comments

Yet another redundant workflow engine

github.com
2 points·by radus·8 месяцев назад·0 comments

The FAIR Guiding Principles for scientific data management and stewardship

nature.com
1 points·by radus·9 месяцев назад·0 comments

comments

radus
·4 месяца назад·discuss
It's simple, just tell it not to hallucinate.
radus
·7 месяцев назад·discuss
Okay, but why?
radus
·7 месяцев назад·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
·7 месяцев назад·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
·4 года назад·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
·4 года назад·discuss
“Please extract this to a separate function”