Skip to content

Commit

Permalink
Merge pull request #11 from RIVM-bioinformatics/test_metadata_propaga…
Browse files Browse the repository at this point in the history
…tion

fix: propagate user metadata
  • Loading branch information
boasvdp authored Sep 19, 2024
2 parents 8557edb + eabb78a commit bdf0db2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run_pipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ result=$?
set +euo pipefail

SEQ_KEYS=
SEQ_ENV=`env | grep irods_input_sequencing`
SEQ_ENV=`env | grep -E 'irods_input_(sequencing|user)'`
for SEQ_AVU in ${SEQ_ENV}
do
SEQ_KEYS="${SEQ_KEYS} ${SEQ_AVU%%=*}"
Expand All @@ -132,7 +132,7 @@ do
if [ ! -z ${!key} ] ; then
attrname=${key:12}
attrname=${attrname/__/::}
echo "${attrname}: '${!key}'" >> ${OUTPUTDIR}/metadata.yml
echo "${attrname}: '${!key}'" >> ${output_dir}/metadata.yml
fi
done

Expand Down

0 comments on commit bdf0db2

Please sign in to comment.