What’s the Difference Between FAT32, exFAT, and NTFS?
How to Install exFAT Support
Friday, 31 August 2018
Thursday, 30 August 2018
Tuesday, 28 August 2018
STAR Aligner In Retion to Phred Quality Encoding
Cited from Phred64 encoding consideration in STAR
"""
STAR does not need to phred quality encoding, at the moment it does not actually use quality scores for mapping. It will simply copy the quality strings into SAM output. If you want to convert the quality scores output is SAM for some reason, you can use --outQSconversionAdd <positive or negative number>.
"""
"""
STAR does not need to phred quality encoding, at the moment it does not actually use quality scores for mapping. It will simply copy the quality strings into SAM output. If you want to convert the quality scores output is SAM for some reason, you can use --outQSconversionAdd <positive or negative number>.
"""
Monday, 27 August 2018
Friday, 24 August 2018
Wednesday, 22 August 2018
Nextflow SGE Executor Memory Specification
Cited from process memory
perJobMemLimit Specifies Platform LSF per-job memory limit mode
process my_process {
memory {16.GB * task.attempt}
clusterOptions "-l h_vmem=${memory.toString().replaceAll(/[\sB]/,'')}"
...
}
Cited from ConfigurationperJobMemLimit Specifies Platform LSF per-job memory limit mode
Friday, 17 August 2018
Customize Bash Prompt String
- Install sexy-bash-prompt
- Modifying the prompt symbol ('PROMPT_SYMBOL') in ~/.bash_prompt
In Bash 4.2+, add the following line at the beginning.
PROMPT_SYMBOL=$'\u21AA'
In Bash 4.1 or earlier, add the following line at the beginning.
PROMPT_SYMBOL=$'\xe2\x86\xaa' - Then source ~/.bash_prompt
- UTF8 code for additional symbols may be found at UTF-8 Arrows
- Assigning UTF8 code to variables was demonstrated in Awesome symbols and characters in a bash prompt
- Hex code for UTF8 symbols can be found through echo ↪ | hexdump -C, for example.
PS1 vs PROMPT_COMMAND
Cited from What is the difference between PS1 and PROMPT_COMMAND
"""
The difference is that PS1 is the actual prompt string used, and PROMPT_COMMAND is a command that is executed just before the prompt.
"""
"""
The difference is that PS1 is the actual prompt string used, and PROMPT_COMMAND is a command that is executed just before the prompt.
"""
Thursday, 16 August 2018
Tuesday, 7 August 2018
Thursday, 2 August 2018
Nextflow Task Specific Execution Path
Cited from Nextflow: a tutorial through examples
echo "Path is \$( pwd )\n "
Specifying $baseDir
"make sure the escape the $ with a backslash in your script"
echo "Path is \$PWD\n "
echo "Path is \$( pwd )\n "
Specifying $baseDir
"make sure the escape the $ with a backslash in your script"
echo "Path is \$PWD\n "
RNA-seq Strand-specific Terminology
Cited from Trinity strand specific: RF or FR
fr-firststrand (tophat) = RF (trinity)
fr-secondstrand (tophat) = FR (trinity)
fr-firststrand (tophat) = RF (trinity)
fr-secondstrand (tophat) = FR (trinity)
Subscribe to:
Posts (Atom)