Skip to content

Commit

Permalink
fix wildcards
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Jan 12, 2024
1 parent b728c51 commit 16430c9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ features:
!input!:
"data/worldcitiespop.csv"
!output!:
"by-country/{{country}}.csv"
"by-country/{country}.csv"
!shell!:
"xsv search -s Country '{{wildcards.country}}' "
"{{input}} > {{output}}"
"xsv search -s Country '{wildcards.country}' "
"{input} > {output}"
- title: Portability
desc: |
Expand All @@ -53,12 +53,12 @@ features:
!input!:
"data/worldcitiespop.csv"
!output!:
"by-country/{{country}}.csv"
"by-country/{country}.csv"
%conda%:
"envs/xsv.yaml"
!shell!:
"xsv search -s Country '{{wildcards.country}}' "
"{{input}} > {{output}}"
"xsv search -s Country '{wildcards.country}' "
"{input} > {output}"
- title: Scripting integration
desc: |
Expand All @@ -71,7 +71,7 @@ features:
!input!:
"data/worldcitiespop.csv"
!output!:
"by-country/{{country}}.csv"
"by-country/{country}.csv"
%script%:
"scripts/select_by_country.R"
Expand Down

0 comments on commit 16430c9

Please sign in to comment.