Skip to content
Snippets Groups Projects
Commit 9c1da674 authored by Gervaise Henry's avatar Gervaise Henry :cowboy:
Browse files

Allow LinkData to create sub dir

parent 948bf890
No related merge requests found
#!/bin/bash
mkdir ../analysis
mkdir ../analysis/DATA
ln -s /work/urology/ghenry/RNA-Seq/SingleCell/PIPELINE/DATA/"$1"/* ../analysis/DATA/
\ No newline at end of file
if [ -z $2 ];then
ln -s /work/urology/ghenry/RNA-Seq/SingleCell/PIPELINE/DATA/"$1"/* ../analysis/DATA/
else
mkdir ../analysis/DATA/$2
ln -s /work/urology/ghenry/RNA-Seq/SingleCell/PIPELINE/DATA/"$1"/* ../analysis/DATA/"$2"/
fi
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment