diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 7dcfe1565..c4f21d8af 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -6,12 +6,12 @@ name: update # Choose when the workflow should run ## Run the workflow at every push -# on: [push] +on: [push] ## Run the workflow every 6 minutes (see https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#scheduled-events) -on: - schedule: - # * is a special character in YAML so you have to quote this string - - cron: '59 22 * * 3' +# on: +# schedule: +# # * is a special character in YAML so you have to quote this string +# - cron: '59 22 * * 3' # Workflows are made of concurrent jobs, and every job is made of sequenctial steps. Steps may invoce actions. jobs: # Name of the job diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..212fd7ec0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/raw_initial_conditions/ \ No newline at end of file diff --git a/src/main.jl b/src/main.jl index 1fb50e53e..fc820824f 100644 --- a/src/main.jl +++ b/src/main.jl @@ -68,7 +68,7 @@ Threads.@threads for i in eachindex(female_male_paths_without_lombardy_positives incidence_dataframe = CSV.read(input_path,DataFrame) reconstructed_df::DataFrame = DataFrame() try - reconstructed_df = unroll_iss_infn(incidence_dataframe, n₋, n₊,nothing) + reconstructed_df = unroll_iss_infn(incidence_dataframe, n₋, n₊,nothing; skip_lines = 0) save_dataframe_to_csv(reconstructed_df,output_files_dir_path,output_name) catch e if isa(e, ErrorException)