Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
wbaopaul committed Apr 20, 2020
1 parent 544b2c4 commit a62836a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Updates
------------
- Current version: 1.1.1
- March, 2020
* *get_mtx* requires two fragments.txt and peak file, separated by comma
* *get_mtx* requires two input files: a fragments.txt file and a peak file, separated by comma
* annotate peak as overlapped with a gene Tss if the corresponding distance <= 1000bp; mark peak with a gene if their distance <= 100kb
- Feb, 2020
* *integrate* module enables 3 options: seurat, harmony and pool
Expand All @@ -61,7 +61,6 @@ Updates
* added new parameters in the configuration file: Top_Variable_Features, REDUCTION, nREDUCTION
* enabled all clustering methods mentioned in the manuscript, along with kmeans clustering on principal components
* file path changed to like downstreame_analysis/PEAK_CALLER/CELL_CALLER/..., indicating peak caller
* qc_per_barcode requires two input files, separated by comma, see example and detailed usage
- Jan, 2020
* added a new module *mergePeaks* to merge different peak files called from different data sets
* added a new module *reConstMtx* to reconstruct peak-by-cell matrix given a peak file, a fragment file and a barcodes.txt file
Expand All @@ -82,7 +81,7 @@ Dependencies

### Programming language users should install

- R (&gt;=3.6.0)
- R (&gt;=3.6.1)
- Python (&gt;=3.6.0)

### Software packages required
Expand Down Expand Up @@ -445,5 +444,4 @@ FAQs

Citation
--------------------------------------
Yu W, Uzun Y, Zhu Q, Chen C, Tan K. *scATAC-pro: a comprehensive workbench for single-cell chromatin accessibility sequencing data.* bioRxiv.org; 2019
doi: https://doi.org/10.1101/824326
Yu W, Uzun Y, Zhu Q, Chen C, Tan K. [*scATAC-pro: a comprehensive workbench for single-cell chromatin accessibility sequencing data.*](https://genomebiology.biomedcentral.com/articles/10.1186/s13059-020-02008-0) Genome Biology; 2020
Empty file removed job_pub2
Empty file.
4 changes: 2 additions & 2 deletions scripts/install/install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ if [ $? != "0" ]; then
exit 1;
else
pver=`R --version 2>&1 | head -1 | cut -d" " -f3`
vercomp $pver "3.6.0"
vercomp $pver "3.6.1"
if [[ $? == 2 ]]; then
echo -e "$RED""R v3.6.0 or higher is needed [$pver detected].""$NORMAL"
echo -e "$RED""R v3.6.1 or higher is needed [$pver detected].""$NORMAL"
exit 1;
fi
fi
Expand Down
2 changes: 1 addition & 1 deletion scripts/src/runDA.R
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ setcolorder(markers, c('chr', 'start', 'end', 'p_val','avg_logFC','pct.1','pct.2
'p_val_adj', 'fdr', 'cluster', 'peak', 'peak0'))

markers = markers[fdr <= 0.05, ]
write.table(markers, file = paste0(output_dir, '/differential_accessible_features_', group1, '_vs_', group2, '.txt'), sep = '\t',
write.table(markers, file = paste0(output_dir, '/differential_accessible_features_', args[3], '_vs_', args[4], '.txt'), sep = '\t',
quote = F, row.names = F)

0 comments on commit a62836a

Please sign in to comment.