Hello,
When I run RNAseq pipeline withmyself(eight samples),it appeared errors as follows,file can not written,but the Memory is enough.
"test" E667: Fsync failed
WARNING: Original file may be lost or damaged
do not quit the editor until the file is successfully written!
Press ENTER or type command to continue
code:
process filer_process{
input:
echo true
set file(rawdata_dir) from rawdata
output:
set file('filter/shell/*_filter.sh')into filtershell
script:
"""
perl filter.pl
"""
}
process filter_run{
input:
echo true
set file(filter) from filtershell
output:
set val(filterdata_folder_dir) into filterdata
script:
"""
sh $filter
"""
}