-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Consolidate web version, update to python3 (#22)
* Initial consolidation from assemblytics_web * Clean up code and merge best of web and CLI versions in scripts * Fix PHP placement, update README, clean up more code. * Clean up * Use Rscript using shebang line in R scripts; handle availability error in main Assemblytics script. * Convert all python scripts to python3 syntax. * Make python scripts compatible with python 2 AND 3.
- Loading branch information
1 parent
df5361f
commit 594bf1c
Showing
42 changed files
with
4,499 additions
and
490 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
public/user_data/* | ||
!public/user_data/.htaccess | ||
public/user_uploads/* | ||
!public/user_uploads/.htaccess | ||
|
||
|
||
*.delta | ||
!public/sample.delta | ||
python_env | ||
reproducibility | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
RewriteEngine On | ||
RewriteBase /assemblytics/ | ||
|
||
RewriteCond %{THE_REQUEST} /public/([^\s?]*) [NC] | ||
RewriteRule ^ %1 [L,NE,R=302] | ||
|
||
RewriteRule ^((?!public/).*)$ public/$1 [L,NC] | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
The MIT License (MIT) | ||
|
||
Copyright (c) 2016 Maria Nattestad | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Assemblytics (full web application) | ||
|
||
This repo contains the full Assemblytics web application. | ||
The web app is running on assemblytics.com, and the command-line version is available at https://github.com/marianattestad/assemblytics | ||
This repository exists so you can install it on your own servers or locally on your computer if need be. | ||
The code here includes the interactive dot plot (which you can't use from the command-line version). | ||
|
||
Dependencies: | ||
- R | ||
- ggplot | ||
- plyr | ||
- Python | ||
- argparse | ||
- numpy | ||
|
||
|
||
Notes for installation: | ||
- Make sure to open up permissions in user_uploads and user_data so the webserver can read and write there. | ||
- It does not contain the examples as some of these are huge files. | ||
|
||
|
||
|
Oops, something went wrong.