python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Specify a color for each rule in Snakemake DAG
I'm running snakemake -n -c1 --dag | dot -Tsvg > dag.svg to get the DAG file.
I was wondering if I could somehow set the color scheme for every node. For example, in the picture below, rule samtool...
ivan199415
Votes: 0
Answers: 1
Airflow PostgresHook error codec can't decode byte 0xc3 in position 3
I want to read postgres table into a data frame for a data engineering pipeline. I am using Airflow to scheduled these tasks. I have created a connection in Airflow called postgres_product_db and trie...
Vineesh Vijayan
Votes: 0
Answers: 1
Airflow DAG Schedule Meaning
What does the below airflow dag schedule mean?
schedule: "12 0-4,14-23 * * *"
Thanks,
cha
I want to schedule airflow dag to run run hourly but not between midnight and morning 7. Also, i wan...
poiuyqwerty0910
Votes: 0
Answers: 1
How to free DAG-like data structure
I have the following DAG (Directed Acyclic Graph) data structure:
struct dag {
struct dag **children; // Array of pointers to DAGs
int n_children; // Number of children
};
I want thi...
lemnis
Votes: 0
Answers: 2