This image facilitates the usage of the Subread package, which includes the read aligners (subread-align, subjunc), the read summarization program featureCounts and other related tools.
The following programs are available on the PATH:
subread-align, subread-buildindex, subjunc, exactSNP, sublong, subindel and featureCounts.flattenGTF, genRandomReads, propmapped, qualityScores, removeDup, repair, subread-fullscan, txUnique and detectionCall.To see the featureCounts help, just run docker run --rm pegi3s/subread featureCounts -h. To see the help of any other program, replace featureCounts by its name.
You should adapt and run the following command: docker run --rm -v /your/data/dir:/data pegi3s/subread featureCounts -a /data/file.gff -o /data/output/output.txt /data/input.bam
In this command, you should replace:
/your/data/dir to point to the directory that contains the input file you want to process.file.gff to the actual name of your annotation file in gff format.output.txt to the actual name of your output file.input.bam to the actual name of your alignment file in bam format.To test the previous command, you can download the following files:
The test BAM file contains paired-end reads, so the -p option is required, and -g locus_tag matches the gene identifier used in the annotation file. After replacing /your/data/dir by the actual working directory, run:
docker run --rm -v /your/data/dir:/data pegi3s/subread featureCounts -p -a /data/saccharomyces.gff -g locus_tag -o /data/saccharomyces_output.txt /data/saccharomyces_data.sorted.bam
Please note that data must be under the same drive than the Docker Toolbox installation (usually C:) and in a folder with write permissions (e.g. C:/Users/User_name/).
You should adapt and run the following command: docker run --rm -v "/c/Users/User_name/dir/":/data pegi3s/subread featureCounts -a /data/file.gff -o /data/output/output.txt /data/input.bam
Content type
Image
Digest
sha256:8edae4859…
Size
61.7 MB
Last updated
2 days ago
docker pull pegi3s/subread