| 36 | {{{ |
| 37 | cd /path/to/my/files |
| 38 | ls |
| 39 | }}} |
| 40 | |
| 41 | Make a connection to the NCBI server using the credentials that you got from NCBI and upload your files. |
| 42 | |
| 43 | |
| 44 | {{{ |
| 45 | # Using FTP |
| 46 | ftp ftp-private.ncbi.nlm.nih.gov |
| 47 | # You'll be prompted for your username and password |
| 48 | name: geoftp |
| 49 | password: MYPASSWD # each submission is different |
| 50 | # Now you should be connected to the GEO server. Change to the directory you were given |
| 51 | cd uploads/jsmith_e123ABC |
| 52 | # Turn off iterative mode (so you don't get asked to confirm every file) |
| 53 | prompt |
| 54 | # Upload all of the files in the directory from where you connected to GEO |
| 55 | mput * |
| 56 | # Wait what can be a long time ... |
| 57 | # After everything is uploaded |
| 58 | quit |
| 59 | }}} |
| 60 | |
| 61 | {{{ |
| 62 | # Using NCFTP |
| 63 | ncftp -u geoftp -p MYPASSWD ftp-private.ncbi.nlm.nih.gov |
| 64 | # Now you should be connected to the GEO server. Change to the directory you were given |
| 65 | cd uploads/jsmith_e123ABC |
| 66 | # Upload all of the directories/files in the directory from where you connected to GEO |
| 67 | # Note that this (a recursive upload) is something that 'ftp' can't do |
| 68 | mput -r * |
| 69 | # Wait what can be a long time ... |
| 70 | # After everything is uploaded |
| 71 | quit |
| 72 | }}} |
| 73 | |
| 74 | While you command-line uploading is in progress, you can always open a FTP GUI (like FileZilla) to monitor and/or confirm progress. |
| 75 | |
| 76 | |