module Bio::FileExistenceChecker
Public Instance Methods
check_file_existence(filename)
click to toggle source
# File lib/bio-sambamba/exception.rb, line 12 def check_file_existence filename raise "file #{filename} does not exist" unless File.exists? filename end