Comment on "How to install Perl modules manually, using CPAN command, and other quick ways"
Installing in CONDA env You can check using which perl - it should give you the perl that's located within your conda environment. In this case, it should...595 days ago
Comment on "Elgg Installation steps !"
If you need to uninstall all MySQL packages sudo apt-get remove --purge mysql* sudo apt-get autoremove sudo apt-get autoclean605 days ago
Comment on "CovCal: Coverage / Read Count Calculator"
Sequencing coverage is defined as the average number of reads that covers each base of the reference genome. Estimating the sequencing coverage is very impo...763 days ago
Comment on "Installing ELGG on Ubuntu !"
sudo apt-get -y --reinstall install phpmyadmin; sudo service apache2 restart;891 days ago
Comment on "Fix rewritable error of ELGG !"
sudo systemctl restart apache2 Now, create an .htaccess file in the web root. sudo nano /var/www/html/.htaccess Add this l...891 days ago
Comment on "Run miniasm assembler on nanopore reads !"
minimap2 –x ava-ont \ ../../trimming_practical/nanofilt/nanofilt_trimmed.fastq \ ../../trimming_practical/nanofilt/nanofilt_trimmed.fastq \ | gzip -1 > ./mi...976 days ago
Comment on "Extract the values using ids !"
Join could be also useful linux_prompt> join file1 file2 11002 item 6 10995 item 7 79600 item 71074 days ago
Comment on "Install composer for ELGG"
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" php -r "if (hash_file('sha384', 'composer-setup.php') === '906a84df04cea2aa72f40b5f787e49f22d4c2...1082 days ago
Comment on "Command line to create blast uniref database !"
wget ftp://ftp.uniprot.org/pub/databases/uniprot/uniref/uniref90/uniref90.fasta.gz gunzip -v uniref90.fasta.gz makeblastdb -in uniref90.fasta -dbtype prot -input_type fasta -out uniref90.fasta1125 days ago
Comment on "Basic docker commands !"
Attached the running docker Instead of using -i or -t options, use the attach command to connect to a running container: docker attach container_id1152 days ago