Includes all the software for methylation profiling of samples from bisulfite sequencing
888
FIRST USE
First time you load our docker container you will need to follow the next steps:
docker push ugrbioinfo/methylextract2:latest
Then you can run the docker container
docker run --hostname methylExtract2 --name methylExtract2 -it methylextract2:latest
SUBSEQUENT USES
After first use you can stop the methylExtract2 container with the following:
docker stop methylExtract2
And for further uses you’ll have to use the following to start the container:
docker start methylExtract2
docker exec -it methylExtract2 /bin/bash
The software prepareAssembly download all files of an assembly and prepares it for methylExtract use and it also write a config file for this assembly. It works with all UCSC available assemblies and with custom assembly files.
| Parameter | Default value | Explanation |
|---|---|---|
| input | None | Path or URL to multi-FASTA file |
| ucsc | None | UCSC assembly ID (e.g. hg38) |
| label | assembly | Label for the assembly |
| threads | 1 | Threads to the methylation profiling process |
| library | PE | PE for paired-end sequencing or SE for single-end |
| config | /home/methylextract/config.txt | Config file path |
Example of use:
prepareAssembly --ucsc hg38 --label hg38 --threads 2 --library PE
This command will download hg38 assembly and it will create a config file in /home/methylextract/config.txt (as default) for a paired-end sequencing data and 2 threads.
MethylExtract2 needs a config file that it’s created by prepareAssembly software and by default placed in /home/methylextract/config.txt.
| Parameter | Default | |
|---|---|---|
| General | threads | 1 |
| assembly | assemblyName | |
| assemblyDir | /opt/methylExtract2/seq/assemblyName | |
| assemblyFile | assemblyName.fa | |
| context | CG | |
| library | PE | |
| Trim Galore! | trimming_adapter | Illumina |
| trimming_length | 35 | |
| Bismark | bismark_bowtie | bowtie2 |
| bismark_N | 1 | |
| bismark_L | 32 | |
| bismark_unmapped | True | |
| bismark_ambiguous | True |
MethylExtract2 --input _SRX/SRR_ --config _configFile_ --outdir _outDir_
MethylExtract2 --input SRX1631736 --config /home/methylextract/config.txt --outdir /home/methylextract/outputMethylomesSRX
MethylExtract2 --input SRR3225632 --config /home/methylextract/config.txt --outdir /home/methylextract/outputMethylomesSRR
MethylExtract2 --input Examples --config /home/methylextract/config.txt --outdir /home/methylextract/outputMethylomesCustom
Content type
Image
Digest
Size
1.8 GB
Last updated
almost 6 years ago
docker pull ugrbioinfo/methylextract2