Skip to content

Commit

Permalink
os.link -> os.rename
Browse files Browse the repository at this point in the history
  • Loading branch information
veprbl committed Jan 7, 2024
1 parent 8f6febe commit 606ed98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions benchmarks/backgrounds/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ rule backgrounds_get_beam_gas_electron:
output:
"input/backgrounds/beam_gas_electron.hepmc",
run:
os.link(input[0], output[0])
os.rename(input[0], output[0])


rule backgrounds_get_beam_gas_proton:
Expand All @@ -25,7 +25,7 @@ rule backgrounds_get_beam_gas_proton:
output:
"input/backgrounds/beam_gas_proton.hepmc",
run:
os.link(input[0], output[0])
os.rename(input[0], output[0])


rule backgrounds_get_DIS:
Expand All @@ -34,7 +34,7 @@ rule backgrounds_get_DIS:
output:
dis_sim="input/backgrounds/pythia8NCDIS_10x100_minQ2=10_beamEffects_xAngle=-0.025_hiDiv_1.0000.edm4hep.root",
run:
os.link(input[0], output[0])
os.rename(input[0], output[0])


rule backgrounds_sim:
Expand Down

0 comments on commit 606ed98

Please sign in to comment.