-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #294 from commonsense/rollback-snakemake
Require snakemake < 5.6 so it doesn't break things
- Loading branch information
Showing
4 changed files
with
28 additions
and
1 deletion.
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,9 @@ | ||
# Robyn has used different names and e-mail addresses in the course of this project. Map them all to her current name and e-mail. | ||
Robyn Speer <rspeer@luminoso.com> <rob@luminoso.com> | ||
Robyn Speer <rspeer@luminoso.com> <rob@lumino.so> | ||
Robyn Speer <rspeer@luminoso.com> <rspeer@mit.edu> | ||
Robyn Speer <rspeer@luminoso.com> <rspeer+gh@luminoso.com> | ||
|
||
# Accidental default e-mail addresses | ||
Robyn Speer <rspeer@luminoso.com> <rspeer@conceptnet-api-1.media.mit.edu> | ||
Robyn Speer <rspeer@luminoso.com> <rspeer@anemone.media.mit.edu> |
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,18 @@ | ||
#!/bin/bash | ||
# Upload big files to Zenodo. | ||
# Script adapted from https://github.com/jhpoelen/zenodo-upload | ||
# | ||
# usage: ./zenodo_upload.sh [filename] | ||
# | ||
|
||
set -xe | ||
|
||
DEPOSITION=$1 | ||
FILEPATH=$2 | ||
FILENAME=$(basename $FILEPATH) | ||
|
||
BUCKET=$(curl -H "Accept: application/json" -H "Authorization: Bearer $ZENODO_TOKEN" "https://www.zenodo.org/api/deposit/depositions/$DEPOSITION" | jq --raw-output .links.bucket) | ||
|
||
|
||
curl --progress-bar --upload-file $FILEPATH $BUCKET/$FILENAME?access_token=$ZENODO_TOKEN | ||
echo |
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
Binary file not shown.