If in the sample sheet an entry for the Sample_Project is not matching our predefined values Antibodies/Metagenomics/Plasmids/Resistance/Other, it should automatically be assigned to the project Other.
See lines 412 to 437 in DMS/openBIS/SampleSheet2openBIS.sh.
### [Data] section values
elif [[ $section == "[Data]" && ${line[1]} && $s -gt 0 ]]
then
write_miseq_sample line[@]
case ${line[8]} in
Antibodies)
anti_sample=true
;;
Metagenomics)
meta_sample=true
;;
Other)
other_sample=true
;;
Plasmids)
plasm_sample=true
;;
Resistance)
res_sample=true
write_resistance_test line[@]
;;
esac
((s+=1))
fi
If in the sample sheet an entry for the
Sample_Projectis not matching our predefined valuesAntibodies/Metagenomics/Plasmids/Resistance/Other, it should automatically be assigned to the projectOther.See lines 412 to 437 in DMS/openBIS/SampleSheet2openBIS.sh.